@font-face {
  font-family: "HiKit Currency";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/hikit-currency.ttf?v=20260810-split-hosting") format("truetype");
}
:root {
  --bg: #090c0d;
  --bg-soft: #101618;
  --panel: #171d20;
  --panel-2: #20282c;
  --text: #f7f3ea;
  --muted: #c2bfb4;
  --line: rgba(255,255,255,.12);
  --steel: #d7dde0;
  --accent: #d0a15d;
  --accent-2: #86b5a3;
  --wood: #a66e42;
  --blueprint: #263337;
  --danger: #a0534e;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(0,0,0,.32);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #090c0d 0%, #0f1416 44%, #090c0d 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 10px);
  line-height: 1.55;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
a, button, input, select, textarea, summary { touch-action: manipulation; }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid rgba(185,31,45,.82);
  outline-offset: 2px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}
.skip-link:focus-visible { transform: translateY(0); }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9,12,13,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 18px 46px rgba(0,0,0,.18);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 6px;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9) 0%, rgba(187,197,200,.96) 36%, rgba(66,75,79,.98) 100%),
    repeating-linear-gradient(90deg, rgba(0,0,0,.2) 0 1px, transparent 1px 5px);
  color: #0c0f11;
  font-size: 14px;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 8px 22px rgba(0,0,0,.25);
}
.brand span:last-child { color: var(--muted); font-size: 13px; font-weight: 500; display: block; }
.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #111; }
.btn-primary:hover { background: #d7ad70; }
.btn-secondary { border-color: rgba(255,255,255,.24); color: var(--text); background: rgba(255,255,255,.04); }
.btn-secondary:hover { border-color: var(--steel); }
.btn-dark { background: #111518; color: var(--text); border-color: rgba(255,255,255,.16); }
.hero {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 86px 0 36px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(255,255,255,.09) 9% calc(9% + 1px), transparent calc(9% + 1px) 100%),
    linear-gradient(90deg, transparent 0 62%, rgba(255,255,255,.08) 62% calc(62% + 1px), transparent calc(62% + 1px) 100%),
    repeating-linear-gradient(0deg, transparent 0 74px, rgba(255,255,255,.035) 74px 75px);
  pointer-events: none;
}
.hero-bg, .page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img, .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero:after, .page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8,10,12,.92) 0%, rgba(8,10,12,.72) 44%, rgba(8,10,12,.32) 100%),
              linear-gradient(0deg, rgba(12,15,17,1) 0%, rgba(12,15,17,0) 48%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) 420px; gap: 52px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--steel);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: 56px; max-width: 930px; }
h2 { font-size: 38px; }
h3 { font-size: 22px; }
.lead { color: var(--muted); font-size: 20px; max-width: 760px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-specrail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 720px;
}
.hero-specrail span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(9,12,13,.46);
  color: var(--steel);
  font-size: 13px;
  backdrop-filter: blur(12px);
}
.section { padding: 86px 0; }
.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 34%),
    var(--bg);
}
.section-graphite {
  background:
    linear-gradient(90deg, rgba(134,181,163,.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--bg-soft), #0d1214);
  background-size: 86px 100%, auto;
}
.section-steel { background: #f3f1eb; color: #16191b; }
.section-steel .muted, .section-steel .section-head p { color: #5c6265; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.section-head p { max-width: 620px; color: var(--muted); margin: 0; }
.muted { color: var(--muted); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
  position: relative;
}
.card:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--steel), transparent);
  opacity: .72;
  z-index: 1;
}
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: #242a2e; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 22px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0 0 16px; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: var(--steel);
  font-size: 13px;
}
.price { color: var(--accent); font-weight: 800; font-size: 20px; }
.specs {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 18px;
}
.specs span strong { color: var(--text); font-weight: 700; }
.filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(9,12,13,.38);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 24px;
}
.field { display: grid; gap: 7px; }
.field label { color: var(--muted); font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: #111518;
  color: var(--text);
  padding: 0 12px;
}
.field textarea { min-height: 110px; padding: 12px; resize: vertical; }
.check-field {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 0 12px;
}
.check-field input { width: 18px; height: 18px; accent-color: var(--accent); }
.solutions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.solution {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    linear-gradient(90deg, rgba(208,161,93,.12), transparent 38%);
}
.solution strong { display: block; font-size: 19px; margin-bottom: 8px; }
.why-grid { grid-template-columns: 1fr 1fr; }
.why-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-list li {
  padding: 18px 18px 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.wide-photo {
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.wide-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-card .card-body { display: grid; gap: 12px; }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}
.case-grid strong { color: var(--text); display: block; }
blockquote {
  margin: 0;
  padding: 16px;
  border-left: 3px solid var(--accent-2);
  background: rgba(124,160,149,.08);
  color: var(--text);
}
.material-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(0,0,0,.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.material-item {
  padding: 22px;
  border-right: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.52);
}
.material-item:last-child { border-right: 0; }
.material-item h3 { font-size: 19px; margin-bottom: 10px; }
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.step {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}
.step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 18px;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}
.faq-item p { color: var(--muted); padding: 0 22px 20px; margin: 0; }
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.lead-form .full { grid-column: 1 / -1; }
.city-choice-field select:disabled {
  opacity: .72;
  cursor: not-allowed;
}
.city-other-button {
  justify-self: start;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.city-other-button:hover,
.city-other-button:focus-visible {
  border-color: rgba(185,31,45,.72);
  background: rgba(185,31,45,.18);
  color: #fff;
}
.city-other-button[hidden],
.manual-city-field[hidden] {
  display: none;
}
.manual-city-field {
  align-self: end;
}
.dealer-section {
  background:
    radial-gradient(circle at 12% 0, rgba(185,31,45,.09), transparent 34%),
    #f3f1eb;
}
.dealer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.dealer-map-card,
.dealer-card {
  border: 1px solid rgba(28,28,30,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 46px rgba(28,28,30,.07);
}
.dealer-map-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 280px;
  padding: clamp(28px, 5vw, 58px);
  color: #17191b;
}
.dealer-map-kicker,
.dealer-card span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dealer-map-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.dealer-map-card h3 {
  max-width: 430px;
  margin: 18px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}
.dealer-map-card p {
  max-width: 760px;
  margin: 0;
  color: #5c6265;
  font-size: 15px;
  line-height: 1.6;
}
.dealer-map-visual {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(28,28,30,.1);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8f6f1, #e9ebe7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 40px rgba(28,28,30,.08);
}
.dealer-map-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
}
.dealer-map-mobile-list {
  display: none;
}
.dealer-map-grid {
  opacity: .38;
}
.dealer-map-land {
  fill: rgba(255,255,255,.94);
  stroke: #c8cbc5;
  stroke-width: 1.5;
  filter: drop-shadow(0 8px 12px rgba(28,28,30,.08));
}
.dealer-map-route {
  fill: none;
  stroke: #b91f2d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  opacity: .72;
}
.dealer-map-country {
  fill: #9a9e98;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.dealer-map-pin-ring {
  fill: rgba(185,31,45,.16);
}
.dealer-map-pin {
  fill: #b91f2d;
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 5px 8px rgba(185,31,45,.24));
}
.dealer-map-label rect {
  fill: rgba(28,28,30,.94);
  rx: 12px;
}
.dealer-map-label text {
  fill: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.dealer-map-label .dealer-map-label-small {
  fill: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 600;
}
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.dealer-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 390px;
  padding: 22px;
  color: #17191b;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.dealer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185,31,45,.55);
  box-shadow: 0 20px 48px rgba(185,31,45,.1);
}
.dealer-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.05;
}
.dealer-card strong {
  color: #b91f2d;
  font-size: 13px;
}
.dealer-card p,
.dealer-card small {
  margin: 0;
  color: #5c6265;
  line-height: 1.42;
}
.dealer-card small {
  font-size: 12px;
}
.dealer-card .dealer-address {
  white-space: pre-line;
}
.dealer-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dealer-regions em {
  padding: 5px 8px;
  border: 1px solid rgba(28,28,30,.1);
  border-radius: 999px;
  background: #f3f1eb;
  color: #4f5651;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}
.dealer-legal {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(28,28,30,.1);
}
.dealer-legal b { font-size: 11px; }
.dealer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-self: end;
  margin-top: auto;
  padding-top: 8px;
}
.dealer-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.dealer-actions a:hover { background: #b91f2d; }
.collaboration-partners-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(185,31,45,.2), transparent 30%),
    #1c1c1e;
  color: #fff;
}
.collaboration-partners-section .section-head p {
  color: rgba(255,255,255,.68);
}
.collaboration-partners-grid {
  display: grid;
  gap: 18px;
}
.collaboration-partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: clamp(22px, 3vw, 34px);
  background: #242426;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.collaboration-partner-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 350px;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%),
    radial-gradient(circle at 45% 50%, rgba(185,31,45,.18), transparent 48%),
    #151517;
}
.collaboration-partner-visual:after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  pointer-events: none;
}
.collaboration-partner-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.3));
}
.collaboration-partner-visual.is-photo {
  display: block;
  padding: 0;
  background: #151517;
}
.collaboration-partner-visual.is-photo:after { display: none; }
.collaboration-partner-visual.is-photo img {
  width: 100%;
  max-height: none;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}
.collaboration-partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 66px);
}
.collaboration-partner-copy .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.collaboration-partner-copy h3 {
  margin: 22px 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
}
.collaboration-partner-copy > p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.6;
}
.collaboration-partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.collaboration-partner-features span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 800;
}
.collaboration-partner-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 999px;
  background: #b91f2d;
  color: #fff;
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}
.collaboration-partner-link:hover {
  background: #d22638;
  transform: translateY(-2px);
}
.stores-page .dealer-section {
  padding-top: 70px;
}
.stores-hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(185,31,45,.14), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(134,181,163,.16), transparent 30%),
    #f3f1eb;
  color: #17191b;
}
.stores-hero:after {
  background:
    linear-gradient(90deg, rgba(243,241,235,.96) 0%, rgba(243,241,235,.78) 58%, rgba(243,241,235,.5) 100%);
}
.stores-hero .breadcrumbs a {
  color: #17191b;
}
.stores-hero .lead {
  color: #5c6265;
}
.stores-hero-panel {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}
.stores-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stores-stat {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(28,28,30,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #17191b;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(28,28,30,.06);
}
.stores-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stores-process-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--panel);
}
.stores-process-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.stores-process-card .stores-process-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(185,31,45,.16);
  border-radius: 16px;
  background: rgba(185,31,45,.08);
  color: #b91f2d;
}
.stores-process-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stores-process-card h3 {
  margin-bottom: 10px;
}
.stores-process-card p {
  margin: 0;
  color: var(--muted);
}
.dealer-form-hint {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(134,181,163,.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(134,181,163,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.045);
}
.dealer-form-hint[hidden] {
  display: none;
}
.dealer-form-hint.is-fallback {
  border-color: rgba(208,161,93,.34);
  background:
    linear-gradient(135deg, rgba(208,161,93,.14), rgba(255,255,255,.04)),
    rgba(255,255,255,.045);
}
.dealer-form-hint span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dealer-form-hint.is-fallback span {
  color: var(--accent);
}
.dealer-form-hint strong {
  color: #fff;
  font-size: 17px;
}
.dealer-form-hint p,
.dealer-form-hint small {
  margin: 0;
  color: rgba(255,255,255,.72);
}
@media (max-width: 980px) {
  .dealer-layout {
    grid-template-columns: 1fr;
  }
  .dealer-map-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .collaboration-partner-card {
    grid-template-columns: 1fr;
  }
  .collaboration-partner-visual {
    min-height: 300px;
  }
  .collaboration-partner-visual.is-photo { min-height: 360px; }
}
@media (max-width: 720px) {
  .dealer-grid {
    grid-template-columns: 1fr;
  }
  .dealer-map-card {
    gap: 22px;
    padding: 22px;
  }
  .dealer-map-card h3 {
    font-size: 34px;
  }
  .dealer-map-visual,
  .dealer-map-svg {
    min-height: 250px;
  }
  .dealer-card {
    min-height: 0;
  }
  .stores-process-grid {
    grid-template-columns: 1fr;
  }
  .stores-stat {
    width: 100%;
    justify-content: center;
  }
  .collaboration-partner-visual {
    min-height: 230px;
    padding: 30px 22px;
  }
  .collaboration-partner-visual.is-photo {
    min-height: 250px;
    padding: 0;
  }
  .collaboration-partner-copy {
    padding: 28px 22px 32px;
  }
}
@media (max-width: 520px) {
  .dealer-map-visual {
    min-height: 0;
    padding: 12px;
  }
  .dealer-map-svg {
    display: none;
  }
  .dealer-map-mobile-list {
    display: grid;
    gap: 8px;
  }
  .dealer-map-mobile-list span {
    display: grid;
    width: 100%;
    gap: 2px;
    min-height: 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1c1c1e;
    color: #fff;
    text-transform: none;
  }
  .dealer-map-mobile-list strong {
    font-size: 14px;
  }
  .dealer-map-mobile-list small {
    color: rgba(255,255,255,.66);
    font-size: 11px;
  }
}
.form-shell {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 26px;
}
.form-note { color: var(--accent-2); min-height: 24px; margin: 10px 0 0; }
.form-note.is-error { color: #ff9ca6; }
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0 60px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--steel); }
.seo-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}
.seo-article {
  display: grid;
  gap: 30px;
}
.seo-article p { color: #d2d0c9; margin: 12px 0 0; }
.seo-aside {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}
.mini-list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.mini-list li { padding-left: 18px; position: relative; }
.mini-list li:before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); position: absolute; left: 0; top: .7em; }
.site-footer {
  background: #080a0b;
  border-top: 1px solid var(--line);
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-col { display: grid; gap: 10px; align-content: start; color: var(--muted); }
.footer-col strong { color: var(--text); margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7e8588;
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 24px;
  font-size: 13px;
}
.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  gap: 8px;
}
.sticky-actions a {
  min-width: 128px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,21,24,.88);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 700;
}
.sticky-actions a:first-child { background: var(--accent); color: #111; }
.empty-state { display: none; color: var(--muted); padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); }
@media (max-width: 1040px) {
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
  .hero-grid, .why-grid, .seo-text { grid-template-columns: 1fr; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-panel, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-table { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .material-item { border-bottom: 1px solid rgba(0,0,0,.12); }
  .seo-aside { position: static; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 68px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
  }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #111518;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px; border-radius: 6px; }
  .nav-links a:hover { background: rgba(255,255,255,.06); }
  .header-actions .btn-secondary { display: none; }
  .hero { min-height: auto; padding: 78px 0 40px; }
  .section { padding: 64px 0; }
  .section-head { display: grid; gap: 14px; }
  .solutions, .grid-2, .lead-form, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
@media (max-width: 560px) {
  h1 { font-size: 32px; }
  h2 { font-size: 27px; }
  .lead { font-size: 16px; margin-top: 16px; }
  .hero { padding: 52px 0 24px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions, .card-body .btn { width: 100%; }
  .hero-actions .btn, .card-body .btn { width: 100%; }
  .grid-3, .grid-4, .filter-panel, .steps, .material-table, .case-grid { grid-template-columns: 1fr; }
  .material-item { border-right: 0; }
  .sticky-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  .sticky-actions a { min-width: 0; font-size: 13px; }
  .site-footer { padding-bottom: 88px; }
}

/* Light architectural concept */
:root {
  --bg: #f7f2e8;
  --bg-soft: #efe8db;
  --panel: #fffdf7;
  --panel-2: #f4ede2;
  --text: #202421;
  --muted: #656a63;
  --line: rgba(35, 39, 35, .14);
  --steel: #68777b;
  --accent: #ef1d2d;
  --accent-2: #2f6f60;
  --wood: #a4744a;
  --blueprint: #dbe3e2;
  --shadow: 0 24px 70px rgba(61, 53, 40, .14);
}
body {
  color: var(--text);
  background:
    linear-gradient(180deg, #fbf7ef 0%, #f2eadc 48%, #fbf7ef 100%),
    repeating-linear-gradient(90deg, rgba(32,36,33,.035) 0 1px, transparent 1px 12px);
}
.site-header {
  background: rgba(251, 247, 239, .9);
  border-bottom: 1px solid rgba(32,36,33,.12);
  box-shadow: 0 14px 42px rgba(54,48,38,.08);
}
.brand { gap: 14px; color: var(--text); }
.brand-logo {
  width: 104px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 28px rgba(43,36,28,.08);
  overflow: hidden;
}
.brand-logo img {
  width: 96px;
  height: auto;
  object-fit: contain;
}
.brand-copy strong { color: #181b19; }
.brand-copy span { color: var(--muted); }
.brand span:last-child { color: var(--muted); }
.nav-links { color: #555b55; }
.nav-links a:hover { color: var(--accent); }
.header-actions .btn-secondary {
  color: var(--text);
  border-color: rgba(32,36,33,.18);
  background: rgba(255,255,255,.62);
}
.btn { border-radius: 6px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(239,29,45,.22);
}
.btn-primary:hover { background: #d91524; }
.btn-secondary {
  border-color: rgba(32,36,33,.2);
  color: var(--text);
  background: rgba(255,255,255,.7);
}
.btn-secondary:hover {
  border-color: rgba(239,29,45,.46);
  color: #111;
}
.btn-dark {
  background: #252a27;
  color: #fff;
  border-color: transparent;
}
.hero {
  min-height: 670px;
  background: #f7f2e8;
}
.hero:before {
  inset: 76px 0 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(239,29,45,.2) 8% calc(8% + 2px), transparent calc(8% + 2px)),
    linear-gradient(90deg, transparent 0 62%, rgba(32,36,33,.09) 62% calc(62% + 1px), transparent calc(62% + 1px)),
    repeating-linear-gradient(0deg, transparent 0 78px, rgba(32,36,33,.055) 78px 79px);
}
.hero:after, .page-hero:after {
  background:
    linear-gradient(90deg, rgba(251,247,239,.97) 0%, rgba(251,247,239,.9) 43%, rgba(251,247,239,.36) 74%, rgba(251,247,239,.08) 100%),
    linear-gradient(0deg, rgba(247,242,232,1) 0%, rgba(247,242,232,0) 44%);
}
.hero-bg img, .page-hero-bg img {
  filter: saturate(.96) contrast(1.02);
}
.eyebrow {
  color: var(--accent-2);
  font-weight: 800;
}
.eyebrow:before { background: var(--accent); height: 2px; }
h1, h2, h3 { color: var(--text); }
.lead { color: #4e554f; }
.hero-specrail span {
  background: rgba(255,255,255,.72);
  border-color: rgba(32,36,33,.14);
  color: #39423d;
  box-shadow: 0 10px 28px rgba(61,53,40,.08);
}
.section-dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), transparent 42%),
    #fbf7ef;
}
.section-graphite {
  background:
    linear-gradient(90deg, rgba(239,29,45,.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #efe8db, #f8f3ea);
  background-size: 92px 100%, auto;
}
.section-steel {
  background: #f7f2e8;
  color: var(--text);
}
.section-steel .muted,
.section-steel .section-head p,
.section-head p,
.muted { color: var(--muted); }
.card {
  border-color: rgba(32,36,33,.12);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(61,53,40,.11);
}
.card:before {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f6b08a 38%, rgba(104,119,123,.4));
}
.card-media { background: #e8dfd0; }
.card p,
.specs,
.case-grid,
.faq-item p,
.mini-list { color: var(--muted); }
.specs span strong,
.case-grid strong { color: var(--text); }
.tag {
  background: #f2eadc;
  color: #48524c;
  border: 1px solid rgba(32,36,33,.08);
}
.price { color: var(--accent); }
.filter-panel,
.form-shell,
.seo-aside {
  border-color: rgba(32,36,33,.12);
  background: rgba(255,253,247,.88);
  box-shadow: 0 20px 54px rgba(61,53,40,.1);
}
.field label { color: #59615a; }
.field input,
.field select,
.field textarea {
  background: #fff;
  color: var(--text);
  border-color: rgba(32,36,33,.16);
}
.check-field {
  background: #fff;
  color: var(--text);
  border-color: rgba(32,36,33,.16);
}
.solution {
  border-color: rgba(32,36,33,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.58)),
    linear-gradient(90deg, rgba(239,29,45,.08), transparent 44%);
  box-shadow: 0 14px 34px rgba(61,53,40,.09);
}
.why-list li {
  background: rgba(255,255,255,.72);
  border-left-color: var(--accent);
  box-shadow: 0 10px 30px rgba(61,53,40,.08);
}
.wide-photo { border-color: rgba(32,36,33,.12); box-shadow: var(--shadow); }
blockquote {
  background: rgba(47,111,96,.08);
  color: var(--text);
}
.material-table { border-color: rgba(32,36,33,.14); }
.material-item {
  background: rgba(255,255,255,.72);
  border-right-color: rgba(32,36,33,.12);
}
.step,
.faq-item {
  background: var(--panel);
  border-color: rgba(32,36,33,.12);
  box-shadow: 0 12px 32px rgba(61,53,40,.08);
}
.page-hero { background: #f7f2e8; }
.breadcrumbs { color: var(--muted); }
.breadcrumbs a { color: var(--accent-2); }
.seo-article p { color: #535b55; }
.site-footer {
  background: #242925;
  color: #f7f3ea;
  border-top-color: rgba(255,255,255,.12);
}
.site-footer .brand-copy strong,
.footer-col strong { color: #fff; }
.site-footer .brand-copy span,
.footer-col,
.footer-bottom { color: #c9c2b6; }
.sticky-actions a {
  background: rgba(255,253,247,.92);
  color: var(--text);
  border-color: rgba(32,36,33,.14);
  box-shadow: 0 12px 30px rgba(61,53,40,.15);
}
.sticky-actions a:first-child {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.empty-state { color: var(--muted); border-color: rgba(32,36,33,.14); background: rgba(255,255,255,.55); }
.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(32,36,33,.14);
  background: rgba(255,255,255,.7);
  color: var(--text);
}
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-icon:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.footer-socials .social-icon {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.welcome-media {
  position: relative;
  min-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(32,36,33,.14);
  background: #111;
  box-shadow: var(--shadow);
  cursor: pointer;
  isolation: isolate;
}
.welcome-media img,
.welcome-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-media-static { cursor: default; }
.welcome-media-static:after { background: linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.08)); }
.hero-grid-no-media {
  grid-template-columns: minmax(0, 860px);
  justify-content: start;
}
.welcome-media video {
  opacity: 0;
  transition: opacity .35s ease;
}
.welcome-media.is-playing video { opacity: 1; }
.welcome-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.06) 56%, rgba(0,0,0,.18));
  pointer-events: none;
}
.video-sound {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.88);
  color: #171a18;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.welcome-media.needs-sound .video-sound,
.welcome-media.is-playing .video-sound {
  opacity: 1;
  transform: none;
}
@media (max-width: 820px) {
  .brand-logo { width: 88px; height: 48px; }
  .brand-logo img { width: 82px; }
  .header-socials { display: none; }
  .welcome-media { min-height: 420px; }
  .menu-toggle {
    color: var(--text);
    background: rgba(255,255,255,.68);
    border-color: rgba(32,36,33,.16);
  }
  .nav-links {
    background: rgba(255,253,247,.98);
    border-color: rgba(32,36,33,.14);
  }
  .nav-links a:hover { background: rgba(239,29,45,.08); }
}
@media (max-width: 560px) {
  .brand span.brand-copy { display: none; }
  .hero { min-height: auto; }
  .card-actions { grid-template-columns: 1fr; }
  .welcome-media { min-height: 320px; }
}

/* Luxury architecture / Living Kitchen refinement */
:root {
  --paper: #fbf7ef;
  --stone: #e8dfd2;
  --champagne: #d7c7ae;
  --graphite: #252b28;
  --brand-red: #ef1d2d;
  --bronze: #9b7a52;
  --olive: #667667;
  --accent: var(--graphite);
}
body {
  background:
    linear-gradient(180deg, #fcf8f1 0%, #f2eadc 44%, #fbf7ef 100%),
    repeating-linear-gradient(90deg, rgba(37,43,40,.035) 0 1px, transparent 1px 120px);
}
.nav { height: 84px; }
.brand-logo {
  width: 118px;
  height: 62px;
  background: rgba(255,255,255,.68);
}
.brand-logo img { width: 108px; }
.btn-primary {
  background: var(--graphite);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37,43,40,.2);
}
.btn-primary:hover { background: #111614; }
.btn-secondary:hover {
  color: var(--graphite);
  border-color: rgba(37,43,40,.42);
}
.living-hero {
  min-height: 760px;
  padding: 104px 0 72px;
  overflow: hidden;
}
.living-hero .hero-bg img {
  transform: scale(1.01);
  transition: transform 4s ease, filter 4s ease;
}
.living-hero:after {
  transition: background 3.2s ease;
  background:
    linear-gradient(90deg, rgba(251,247,239,.98) 0%, rgba(251,247,239,.92) 41%, rgba(251,247,239,.5) 70%, rgba(251,247,239,.16) 100%),
    linear-gradient(0deg, rgba(247,242,232,1) 0%, rgba(247,242,232,0) 48%);
}
.living-hero.is-evening .hero-bg img,
.living-hero:hover .hero-bg img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04) brightness(.88);
}
.living-hero.is-evening:after,
.living-hero:hover:after {
  background:
    linear-gradient(90deg, rgba(251,247,239,.96) 0%, rgba(251,247,239,.82) 38%, rgba(90,70,48,.22) 70%, rgba(45,34,26,.38) 100%),
    linear-gradient(0deg, rgba(58,44,32,.4) 0%, rgba(247,242,232,0) 54%);
}
.hero-grid { position: relative; z-index: 4; grid-template-columns: minmax(0, 1fr) 390px; }
.hero-specrail span {
  background: rgba(255,253,247,.7);
  backdrop-filter: blur(14px);
}
.section { padding: 104px 0; }
.section-head { margin-bottom: 42px; }
h1 { font-size: clamp(48px, 5.8vw, 78px); max-width: 980px; }
h2 { font-size: clamp(34px, 3.2vw, 52px); }
.card,
.solution,
.form-shell,
.filter-panel,
.faq-item,
.step {
  transition: transform .6s ease, box-shadow .6s ease, border-color .6s ease;
}
.card:hover,
.solution:hover,
.faq-item:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 76px rgba(61,53,40,.14);
}
.card:before {
  background: linear-gradient(90deg, var(--brand-red), rgba(155,122,82,.55), rgba(104,119,123,.28));
}
.project-stories {
  background:
    linear-gradient(180deg, #fbf7ef 0%, #efe7d8 100%),
    repeating-linear-gradient(90deg, rgba(37,43,40,.04) 0 1px, transparent 1px 116px);
}
.story-grid { align-items: stretch; }
.story-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
}
.story-card:first-child .card-media {
  aspect-ratio: auto;
  min-height: 520px;
}
.story-card:first-child .card-body {
  align-content: center;
  padding: 42px;
}
.story-card:first-child h3 {
  font-size: clamp(30px, 3vw, 46px);
}
.case-card {
  border-radius: 6px;
}
.materials-experience {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}
.material-preview {
  position: sticky;
  top: 104px;
  min-height: 560px;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(37,43,40,.12);
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.32)),
    linear-gradient(120deg, #d8dde0, #f9f6ee 46%, #bfc7c9);
  box-shadow: var(--shadow);
  transition: background 1s ease, color 1s ease;
}
.material-preview:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.28) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, transparent, rgba(37,43,40,.08));
  opacity: .58;
}
.material-preview:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.66) 55%, rgba(255,255,255,.86) 100%),
    linear-gradient(90deg, rgba(255,255,255,.68), rgba(255,255,255,.1));
  pointer-events: none;
}
.material-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}
.material-photo[hidden] {
  display: none;
}
.material-preview > :not(.material-photo) { position: relative; z-index: 1; }
.preview-kicker {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--brand-red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.material-preview h3 {
  color: #1c1c1e;
  font-size: clamp(30px, 3vw, 46px);
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.material-preview p {
  max-width: 520px;
  color: #343a3f;
  margin: 0;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.material-preview small {
  width: fit-content;
  color: #596068;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.material-sample {
  display: none;
}
.material-preview[data-finish="steel"],
.material-preview[data-finish="aisi304"] {
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.9), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.28) 0 1px, transparent 1px 9px),
    linear-gradient(115deg, #9da7aa 0%, #eef0ec 32%, #c3cbcc 52%, #f7f3eb 72%, #879194 100%);
}
.material-preview[data-finish="stainless"] {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 1px, transparent 1px 7px),
    linear-gradient(120deg, #b9c0c2 0%, #faf8f1 44%, #a6afb2 100%);
}
.material-preview[data-finish="graphite"] {
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.16), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 9px),
    linear-gradient(120deg, #191b1c 0%, #353b3c 45%, #676f6c 100%);
}
.material-preview[data-finish="graphite"] p,
.material-preview[data-finish="graphite"] small { color: rgba(255,255,255,.82); }
.material-preview[data-finish="graphite"]:after,
.material-preview[data-finish="black"]:after,
.material-preview[data-finish="chameleon"]:after {
  background:
    linear-gradient(180deg, rgba(10,10,11,.04) 0%, rgba(10,10,11,.52) 54%, rgba(10,10,11,.78) 100%),
    linear-gradient(90deg, rgba(10,10,11,.52), rgba(10,10,11,.08));
}
.material-preview[data-finish="graphite"] .preview-kicker,
.material-preview[data-finish="black"] .preview-kicker,
.material-preview[data-finish="chameleon"] .preview-kicker {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.material-preview[data-finish="graphite"] h3,
.material-preview[data-finish="black"] h3,
.material-preview[data-finish="chameleon"] h3 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.24);
}
.material-preview[data-finish="graphite"] p,
.material-preview[data-finish="black"] p,
.material-preview[data-finish="chameleon"] p {
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.material-preview[data-finish="black"] {
  color: #fff;
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(120deg, #111315 0%, #2a2c2f 52%, #050607 100%);
}
.material-preview[data-finish="black"] p,
.material-preview[data-finish="black"] small { color: rgba(255,255,255,.82); }
.material-preview[data-finish="hpl"] {
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.78), transparent 30%),
    repeating-linear-gradient(45deg, rgba(124,100,72,.08) 0 1px, transparent 1px 12px),
    linear-gradient(120deg, #e9ddca 0%, #fbf7ef 45%, #bfae91 100%);
}
.material-preview[data-finish="stone"] {
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.78), transparent 32%),
    repeating-linear-gradient(115deg, rgba(75,67,58,.08) 0 1px, transparent 1px 24px),
    linear-gradient(120deg, #d9d1c6 0%, #f8f4ec 42%, #a7a097 100%);
}
.material-preview[data-finish="bronze"] {
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.6), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 10px),
    linear-gradient(120deg, #8c6c4d 0%, #c79b6e 42%, #f1dac0 58%, #5f4633 100%);
}
.material-preview[data-finish="gold"] {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.68), transparent 30%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 10px),
    linear-gradient(120deg, #a98439 0%, #e1bf65 42%, #fff0bb 58%, #7f6128 100%);
}
.material-preview[data-finish="chameleon"] {
  color: #fff;
  background:
    radial-gradient(circle at 70% 24%, rgba(244,91,205,.42), transparent 28%),
    radial-gradient(circle at 22% 70%, rgba(42,181,134,.42), transparent 34%),
    linear-gradient(120deg, #2b3438 0%, #5f7772 44%, #7c486d 100%);
}
.material-preview[data-finish="chameleon"] p,
.material-preview[data-finish="chameleon"] small { color: rgba(255,255,255,.82); }
.material-preview[data-finish="mixed"] {
  background:
    linear-gradient(90deg, rgba(185,31,45,.12), transparent 36%),
    linear-gradient(120deg, #c9d0d1 0%, #f7f1e7 33%, #3c4142 66%, #b4916d 100%);
}
.materials-experience .material-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.material-selector .material-item {
  width: 100%;
  min-height: 126px;
  text-align: left;
  cursor: pointer;
  padding: 22px;
  border: 1px solid rgba(37,43,40,.12);
  border-radius: 8px;
  background: rgba(255,253,247,.78);
  color: var(--text);
  box-shadow: 0 14px 36px rgba(61,53,40,.08);
}
.material-selector .material-item[aria-pressed="true"],
.material-selector .material-item:hover,
.material-selector .material-item:focus-visible {
  border-color: rgba(239,29,45,.32);
  transform: translateX(4px);
}
.material-selector .material-item:focus-visible {
  outline: 3px solid #ef1d2d;
  outline-offset: 3px;
}
.material-selector .material-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
@keyframes softReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-grid > div,
  .section-head,
  .card,
  .solution,
  .material-preview {
    animation: softReveal .9s ease both;
  }
}
@media (max-width: 1040px) {
  .living-hero { min-height: auto; }
  .story-card:first-child { grid-template-columns: 1fr; }
  .story-card:first-child .card-media { min-height: 360px; }
  .materials-experience { grid-template-columns: 1fr; }
  .material-preview { position: relative; top: auto; min-height: 420px; }
}
@media (max-width: 820px) {
  .nav { height: 72px; }
  .brand-logo { width: 96px; height: 52px; }
  .brand-logo img { width: 90px; }
  .living-hero { padding: 72px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .living-hero { padding: 50px 0 24px; }
  h1 { font-size: 34px; }
  .hero-specrail { display: none; }
  .story-card:first-child .card-media { min-height: 260px; }
  .story-card:first-child .card-body { padding: 24px; }
  .material-preview { min-height: 380px; padding: 24px; }
  .material-sample { width: 86px; height: 86px; }
  .material-selector .material-item { min-height: 112px; }
}

/* Primer design system */
:root {
  --bg: #fafafa;
  --bg-soft: #f3f3f4;
  --panel: #ffffff;
  --panel-2: #f6f6f7;
  --text: #1c1c1e;
  --muted: #60646c;
  --line: rgba(28, 28, 30, .1);
  --steel: #8e8e93;
  --metal: #d1d1d6;
  --accent: #1c1c1e;
  --accent-2: #2f6f60;
  --shadow: 0 24px 80px rgba(0, 0, 0, .12);
  --radius: 24px;
  --max: 1240px;
}
body {
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(209,209,214,.55), transparent 32%),
    radial-gradient(circle at 112% 20%, rgba(142,142,147,.28), transparent 30%),
    #fafafa;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
.container { width: min(var(--max), calc(100% - 40px)); }
.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(100% - 32px, 1040px);
  min-height: 78px;
  height: auto;
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: 0 12px 44px rgba(0,0,0,.08);
  backdrop-filter: blur(18px);
}
.brand-logo {
  width: 96px;
  height: 54px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}
.brand-logo img { width: 92px; }
.brand-copy { display: none; }
.nav-links {
  gap: 28px;
  color: #343438;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-links a:hover { color: #000; }
.header-actions .btn-secondary {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  border: 0;
}
.header-socials { display: none; }
.hero.living-hero {
  min-height: 95vh;
  padding: 150px 0 86px;
  background: transparent;
}
.living-hero .hero-bg,
.hero:before,
.hero:after { display: none; }
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 54px;
}
.eyebrow {
  display: inline-flex;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(28,28,30,.1);
  background: rgba(255,255,255,.58);
  color: #5d6269;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.eyebrow:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}
h1, h2, h3 {
  font-family: Montserrat, Manrope, sans-serif;
  color: #1c1c1e;
}
h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.06;
  max-width: 760px;
  background: linear-gradient(135deg, #1c1c1e 0%, #8e8e93 50%, #1c1c1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}
h2 { font-size: clamp(34px, 4vw, 52px); }
.lead {
  color: #60646c;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 300;
  max-width: 620px;
}
.hero-actions { margin-top: 36px; gap: 18px; }
.btn {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  font-weight: 800;
}
.btn-primary,
.btn-dark {
  position: relative;
  overflow: hidden;
  background: #1c1c1e;
  color: #fff;
  border: 0;
  box-shadow: 0 24px 54px rgba(28,28,30,.2);
}
.btn-primary:after,
.btn-dark:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: transform .6s ease;
}
.btn-primary:hover:after,
.btn-dark:hover:after { transform: translateX(200%); }
.btn-secondary {
  color: #1c1c1e;
  background: transparent;
  border: 0;
}
.hero-specrail span {
  background: rgba(255,255,255,.66);
  border-color: rgba(28,28,30,.08);
  color: #494d55;
}
.welcome-media {
  min-height: 600px;
  border-radius: 32px;
  border-color: rgba(28,28,30,.08);
  box-shadow: 0 34px 90px rgba(0,0,0,.18);
}
.welcome-media:before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(28,28,30,.12);
  border-radius: 32px;
  z-index: -1;
}
.marquee-band {
  width: 100%;
  margin: 30px 0 56px;
  padding: 24px 0;
  overflow: hidden;
  transform: rotate(-1deg) scale(1.03);
  transform-origin: center;
  background: #1c1c1e;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: Montserrat, Manrope, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.marquee-track span {
  margin: 0 32px;
  color: transparent;
  background: linear-gradient(90deg, #8e8e93, #fff);
  -webkit-background-clip: text;
}
.marquee-track i {
  color: #8e8e93;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.section { padding: 88px 0; }
.section-dark,
.section-graphite,
.section-steel {
  background: transparent;
}
.feature-categories { padding-top: 90px; }
.section-head {
  margin-bottom: 38px;
}
.section-head p {
  color: #696d74;
  font-size: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}
.feature-card {
  position: relative;
  min-height: 400px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(0,0,0,.14);
}
.feature-card.feature-wide { grid-column: span 8; }
.feature-card picture,
.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card img,
.card-media img {
  transition: transform .75s cubic-bezier(.25,.46,.45,.94);
}
.feature-card:hover img,
.card:hover .card-media img { transform: scale(1.08); }
.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.16) 62%, rgba(0,0,0,.04));
}
.feature-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  display: grid;
  gap: 10px;
  color: #fff;
}
.feature-content strong {
  font-family: Montserrat, Manrope, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}
.feature-content small {
  max-width: 460px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
}
.feature-content em {
  font-style: normal;
  font-weight: 800;
}
.filter-panel {
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(28,28,30,.08);
  box-shadow: 0 16px 54px rgba(0,0,0,.07);
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  border-radius: 24px;
  background: #fff;
  border: 0;
  box-shadow: 0 18px 54px rgba(0,0,0,.09);
}
.card:before { display: none; }
.card-media {
  aspect-ratio: 1 / 1;
  border-radius: 24px 24px 0 0;
  background: #f0f0f1;
}
.tag {
  border-radius: 999px;
  background: #f3f3f4;
  color: #5f636b;
}
.price { color: #1c1c1e; }
.field input,
.field select,
.field textarea,
.check-field {
  border-radius: 14px;
}
.why-grid {
  align-items: center;
  gap: 80px;
}
.why-list li {
  border-left: 2px solid #e1e1e4;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color .2s ease;
}
.why-list li:hover { border-left-color: #1c1c1e; }
.wide-photo {
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.14);
}
.solutions { gap: 22px; }
.solution {
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0,0,0,.08);
}
.step,
.faq-item,
.form-shell,
.seo-aside {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(0,0,0,.08);
}
.form-shell {
  padding: 42px;
}
.lead-form .btn-primary {
  background: #fff;
  color: #1c1c1e;
  box-shadow: none;
}
#lead {
  background: #1c1c1e;
  color: #fff;
}
#lead h2,
#lead .eyebrow,
#lead .section-head p { color: #fff; }
#lead .eyebrow { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
#lead .form-shell {
  background: #2c2c2e;
  border: 1px solid rgba(255,255,255,.08);
}
#lead .field label { color: rgba(255,255,255,.72); }
#lead .field input,
#lead .field select,
#lead .field textarea {
  background: #1c1c1e;
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
.site-footer {
  background: #151515;
}
.sticky-actions a {
  border-radius: 999px;
}
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .welcome-media { min-height: 520px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card,
  .feature-card.feature-wide { grid-column: span 6; }
}
@media (max-width: 820px) {
  .site-header { top: 12px; }
  .nav { width: calc(100% - 24px); border-radius: 26px; }
  .nav-links {
    top: 86px;
    background: rgba(255,255,255,.96);
    border-color: rgba(28,28,30,.1);
    border-radius: 24px;
  }
  .menu-toggle {
    border-radius: 999px;
  }
  .header-actions .btn-secondary { display: none; }
  .living-hero { padding-top: 118px; }
  .welcome-media { min-height: 440px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card.feature-wide { grid-column: auto; }
  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 36px; }
  .living-hero { padding: 108px 0 34px; }
  .hero-actions .btn { width: 100%; }
  .welcome-media { min-height: 340px; border-radius: 26px; }
  .marquee-band { margin-top: 8px; }
  .section { padding: 62px 0; }
  .feature-card { min-height: 320px; border-radius: 26px; }
  .form-shell { padding: 22px; }
}

/* Catalog refinement */
body,
button,
input,
select,
textarea {
  font-family: Onest, "Segoe UI", Arial, sans-serif;
}
h1,
h2,
h3,
.marquee-track,
.feature-content strong {
  font-family: Onest, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
.feature-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  grid-column: span 3;
  min-height: 300px;
  border-radius: 24px;
}
.feature-card.feature-wide {
  grid-column: span 6;
}
.feature-content {
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.feature-content strong {
  font-size: clamp(21px, 2.2vw, 30px);
}
.feature-content em {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 13px;
}
.catalog-filter-panel,
.project-filter-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
}
.filter-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 4px;
}
.filter-head div {
  display: grid;
  gap: 4px;
}
.filter-head strong {
  font-size: 17px;
  color: #1c1c1e;
}
.filter-head span {
  color: #787d86;
  font-size: 13px;
}
.filter-reset {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #1c1c1e;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.catalog-filter-panel .field,
.project-filter-panel .field,
.catalog-filter-panel .check-field {
  grid-column: span 3;
}
.catalog-filter-panel .field-wide {
  grid-column: span 6;
}
.catalog-filter-panel .field-price {
  grid-column: span 6;
}
.field label {
  color: #727780;
  font-weight: 700;
}
.field select,
.field input,
.field textarea,
.check-field {
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(28,28,30,.1);
  background: #fff;
  color: #1c1c1e;
  box-shadow: none;
}
.check-field {
  align-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-weight: 700;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-card .card-media {
  aspect-ratio: 1 / .92;
}
.product-card .card-body {
  flex: 1;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.product-card .meta-row {
  margin: 0 0 12px;
}
.product-card h3 {
  min-height: 52px;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.18;
}
.product-card .price {
  margin-bottom: 14px;
  font-size: 18px;
}

.price-stack {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 5px 9px;
  align-items: baseline;
  font-family: "HiKit Currency", "Open Sans", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
}
.price-current {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  color: var(--accent);
  white-space: nowrap;
}
.price-current strong { font: inherit; }
.price-prefix { color: inherit; font-size: .7em; font-weight: 700; }
.price-old {
  color: #8b8c92;
  font-size: .68em;
  font-weight: 600;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}
.price-discount {
  padding: 4px 7px;
  border-radius: 999px;
  background: #fff0f2;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.byn-symbol {
  display: inline-block;
  font-family: "HiKit Currency", "Open Sans", Arial, sans-serif;
  font-size: .78em;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  vertical-align: -.015em;
}
.byn-symbol-inline {
  margin-left: .22em;
  transform: translateY(.055em);
}
.price-request { white-space: nowrap; }
.product-card .price-request,
.product-price-panel .price-request { color: #fff; }
.product-price-value .price-stack { font-size: inherit; }
.product-price-value .price-old { font-size: 16px; }
.product-price-value .price-discount { font-size: 12px; }
.product-card .specs {
  margin: 0 0 18px;
  gap: 8px;
  font-size: 13px;
}
.product-card .specs span {
  display: block;
}
.product-card .specs span:nth-child(n+4) {
  display: none;
}
.product-card .card-actions {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
}
.product-card .btn {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 16px;
  white-space: normal;
  line-height: 1.15;
  text-align: center;
  font-size: 14px;
}
.product-card .btn-secondary {
  background: #f3f3f4;
  border: 1px solid rgba(28,28,30,.08);
}
.welcome-media {
  background: #e9e2d7;
}
.welcome-media img,
.welcome-media video {
  object-position: center;
}
.welcome-media:after {
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.14));
}
.welcome-hint {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #1c1c1e;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  pointer-events: none;
}
.welcome-hint span {
  font-size: 12px;
  font-weight: 800;
}
.welcome-hint small {
  color: #6b7078;
  font-size: 11px;
}
.video-sound {
  top: auto;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(28,28,30,.84);
  color: #fff;
  border: 0;
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
  opacity: 1;
  transform: none;
}
.case-card .card-actions,
.case-card .btn {
  width: fit-content;
  max-width: 100%;
}
.sticky-actions {
  gap: 10px;
}
.sticky-actions a {
  min-height: 44px;
  border: 1px solid rgba(28,28,30,.08);
  background: rgba(255,255,255,.88);
  color: #1c1c1e;
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}
.sticky-actions a:first-child {
  background: #1c1c1e;
  color: #fff;
}
.brand-logo {
  width: 74px;
  height: 42px;
  border-radius: 999px;
}
.brand-logo img {
  width: 68px;
}
.header-actions {
  gap: 8px;
}
.header-socials {
  display: flex;
}
.header-socials .social-icon {
  width: 34px;
  height: 34px;
}
.header-socials .social-icon svg {
  width: 17px;
  height: 17px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
  white-space: nowrap;
}
.header-phone svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.social-icon {
  flex: 0 0 auto;
}
.social-telegram { color: #229ed9; }
.social-viber { color: #7360f2; }
.social-whatsapp { color: #25d366; }
.social-email { color: #b55342; }
.manager-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.footer-contact-row {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-contact-row .manager-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.manager-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.manager-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.manager-kicker,
.manager-region {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.manager-kicker {
  color: rgba(255,255,255,.58);
}
.manager-region {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.1);
}
.manager-card-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.manager-card strong {
  color: #fff;
  margin: 0;
  line-height: 1.18;
}
.manager-card span {
  font-size: 12px;
}
.manager-card a {
  color: #fff;
  font-weight: 700;
}
.manager-phone-row {
  width: max-content;
}
.manager-card-region {
  background:
    linear-gradient(135deg, rgba(185,31,45,.18), rgba(255,255,255,.05));
  border-color: rgba(185,31,45,.32);
}
.manager-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.manager-socials .social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.14);
}
.manager-socials .social-icon:hover,
.footer-socials .social-icon:hover,
.header-socials .social-icon:hover,
.sticky-actions .sticky-icon:hover {
  color: #fff;
  background: #1c1c1e;
  border-color: #1c1c1e;
}
.sticky-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: auto;
  max-width: calc(100% - 32px);
}
.sticky-actions a {
  width: 44px;
  padding: 0;
}
.sticky-actions a:first-child {
  width: auto;
  padding: 0 16px;
}
.sticky-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.legal-document {
  max-width: 920px;
  display: grid;
  gap: 10px;
}
.legal-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(185,31,45,.12), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(244,240,232,.84)),
    #f7f2e8;
}
.legal-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(28,28,30,.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(28,28,30,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}
.legal-hero:after {
  background:
    linear-gradient(90deg, rgba(247,242,232,.98) 0%, rgba(247,242,232,.76) 46%, rgba(247,242,232,.2) 100%);
}
.legal-hero-visual {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: -1;
  width: min(430px, 34vw);
  height: min(330px, 34vw);
  pointer-events: none;
}
.legal-hero-visual:before,
.legal-hero-visual:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(28,28,30,.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(185,31,45,.12) 0 16%, transparent 16%),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(28,28,30,.11) 27px 28px),
    #fff;
  box-shadow: 0 26px 70px rgba(28,28,30,.16);
}
.legal-hero-visual:before {
  inset: 22px 92px 10px 20px;
  transform: rotate(-8deg);
}
.legal-hero-visual:after {
  inset: 0 22px 30px 110px;
  transform: rotate(7deg);
}
.legal-hero-mark {
  position: absolute;
  right: 54px;
  bottom: 58px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 2px solid rgba(185,31,45,.7);
  border-radius: 999px;
  color: #b91f2d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-12deg);
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 40px rgba(185,31,45,.12);
}
.legal-page .page-hero h1 {
  max-width: 1080px;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.legal-document article {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.legal-document h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 28px 0 6px;
}
.legal-document p {
  color: #535b55;
  margin: 0;
}
.document-source {
  margin-top: 24px;
  color: #6b7078;
}
.document-source a {
  color: #1c1c1e;
  font-weight: 800;
}
@media (max-width: 1040px) {
  .header-phone { display: none; }
}
@media (max-width: 900px) {
  .footer-contact-row .manager-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .header-socials { display: none; }
  .brand-logo { width: 64px; height: 38px; }
  .brand-logo img { width: 60px; }
}
@media (max-width: 1120px) {
  .feature-card,
  .feature-card.feature-wide {
    grid-column: span 6;
  }
  .catalog-filter-panel .field,
  .project-filter-panel .field,
  .catalog-filter-panel .check-field {
    grid-column: span 6;
  }
  .catalog-filter-panel .field-wide,
  .catalog-filter-panel .field-price {
    grid-column: span 12;
  }
}
@media (max-width: 640px) {
  body {
    padding-bottom: 124px;
  }
  .feature-card,
  .feature-card.feature-wide {
    grid-column: span 12;
    min-height: 260px;
  }
  .catalog-filter-panel,
  .project-filter-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .catalog-filter-panel .field,
  .catalog-filter-panel .field-wide,
  .catalog-filter-panel .field-price,
  .project-filter-panel .field,
  .catalog-filter-panel .check-field,
  .filter-head {
    grid-column: 1 / -1;
  }
  .filter-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .filter-reset {
    width: 100%;
  }
  .sticky-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .sticky-actions a {
    min-width: 0;
    min-height: 44px;
    font-size: 13px;
  }
  .product-card .card-body {
    min-height: auto;
  }
  .product-card h3 {
    min-height: 0;
  }
  .welcome-hint {
    left: 14px;
    top: 14px;
  }
}

.app-icon,
.social-icon .app-icon,
.sticky-icon .app-icon,
.video-sound .app-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}
.app-icon .icon-cut {
  fill: var(--icon-bg, #1c1c1e);
}
.sound-toggle-icon .icon-sound-off {
  display: none;
}
.video-sound.is-muted .icon-sound-on {
  display: none;
}
.video-sound.is-muted .icon-sound-off {
  display: block;
}
.social-links {
  align-items: center;
}
.social-icon,
.header-socials .social-icon,
.manager-socials .social-icon,
.footer-socials .social-icon,
.sticky-actions .sticky-icon,
.sticky-actions a,
.video-sound {
  display: inline-grid;
  place-items: center;
}
.social-icon,
.header-socials .social-icon,
.manager-socials .social-icon,
.footer-socials .social-icon,
.sticky-actions .sticky-icon {
  --icon-bg: #1c1c1e;
  --icon-fg: #fff;
  color: var(--icon-fg);
  background: var(--icon-bg);
  border-color: rgba(28,28,30,.12);
  box-shadow: 0 14px 34px rgba(28,28,30,.14);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.social-telegram,
.header-socials .social-telegram,
.manager-socials .social-telegram,
.footer-socials .social-telegram,
.sticky-actions .social-telegram {
  --icon-bg: #1c1c1e;
}
.social-viber,
.header-socials .social-viber,
.manager-socials .social-viber,
.footer-socials .social-viber,
.sticky-actions .social-viber {
  --icon-bg: #b91f2d;
}
.social-whatsapp,
.header-socials .social-whatsapp,
.manager-socials .social-whatsapp,
.footer-socials .social-whatsapp,
.sticky-actions .social-whatsapp {
  --icon-bg: #2f6f60;
}
.social-email,
.header-socials .social-email,
.manager-socials .social-email,
.footer-socials .social-email,
.sticky-actions .social-email {
  --icon-bg: #68777b;
}
.social-phone,
.header-socials .social-phone,
.manager-socials .social-phone,
.footer-socials .social-phone,
.sticky-actions .social-phone {
  --icon-bg: #202421;
}
.social-icon:hover,
.manager-socials .social-icon:hover,
.footer-socials .social-icon:hover,
.header-socials .social-icon:hover,
.sticky-actions .sticky-icon:hover {
  color: var(--icon-fg);
  background: var(--icon-bg);
  border-color: rgba(28,28,30,.18);
  filter: brightness(1.08) saturate(1.05);
  transform: translateY(-1px);
}
.brand-logo {
  width: 66px;
  height: 38px;
}
.brand-logo img {
  width: 60px;
}
.menu-toggle {
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.menu-toggle:hover,
.menu-toggle.is-open {
  border-color: #1c1c1e;
  background: #1c1c1e;
  color: #fff;
}
.menu-line {
  display: block;
  width: 20px;
  height: 2.2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .18s ease;
}
.menu-toggle.is-open .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(.25);
}
.menu-toggle.is-open .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.video-sound {
  --icon-bg: #1c1c1e;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  background: rgba(28,28,30,.88);
  color: #fff;
}
.video-sound.is-muted {
  --icon-bg: #b91f2d;
  background: #b91f2d;
}
.video-sound .app-icon {
  width: 20px;
  height: 20px;
}
.sticky-actions {
  right: 18px;
  left: auto;
  bottom: 18px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  width: auto;
  max-width: none;
  gap: 8px;
}
.sticky-actions a {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
}
.sticky-actions a:first-child {
  width: auto;
  min-width: 88px;
  padding: 0 16px;
  border-radius: 999px;
}

@media (max-width: 820px) {
  .brand-logo {
    width: 58px;
    height: 34px;
  }
  .brand-logo img {
    width: 54px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }
  .site-footer {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }
  .footer-bottom {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .sticky-actions {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    gap: 5px;
  }
  .sticky-actions a {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    padding: 0;
    font-size: 0;
  }
  .sticky-actions a:first-child {
    flex: 1.6 1 0;
    width: auto;
    min-width: 0;
    height: 40px;
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }
  .sticky-actions .app-icon {
    width: 17px;
    height: 17px;
  }
  .video-sound {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
  .welcome-hint {
    max-width: calc(100% - 84px);
  }
}

.product-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(36,41,37,.22);
  box-shadow: 0 18px 54px rgba(28,28,30,.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185,31,45,.62);
  box-shadow: 0 26px 72px rgba(28,28,30,.13);
}
.product-card .product-card-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.product-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .32s ease;
}
.product-card:hover .product-card-media img {
  transform: scale(1.04);
}
.product-card h3 a {
  color: inherit;
}
.product-card-text {
  margin: 0 0 14px;
  color: #686d72;
  font-size: 13px;
  line-height: 1.45;
}
.product-card .price {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  font-size: 15px;
}
.product-card .price-sale {
  border: 1px solid rgba(185, 31, 45, .14);
  background: #fff;
}
.product-card .price-sale .price-current { color: #f32443; }
.product-card .price-sale .price-old { color: #8b8c92; }
.product-card .price:not(.price-sale) .price-current,
.product-card .price:not(.price-sale) .price-prefix,
.product-card .price:not(.price-sale) .byn-symbol {
  color: #fff;
}
.product-card .specs {
  padding-top: 2px;
}
.product-card .specs span {
  color: #565b60;
}
.product-card .specs strong {
  color: #1c1c1e;
}
.selected-product-field {
  padding: 14px;
  border-radius: 18px;
  background: rgba(185,31,45,.12);
  border: 1px solid rgba(185,31,45,.24);
}
.selected-product-field input[readonly] {
  background: #fff;
  color: #1c1c1e;
  font-weight: 800;
}

.product-detail-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(185,31,45,.10), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, #f4efe7 48%, #fbf7ef 100%);
}
.product-detail-hero {
  padding: clamp(128px, 10vw, 148px) 0 40px;
}
.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #73716b;
  font-size: 13px;
  margin-bottom: 18px;
}
.product-breadcrumbs a {
  color: #1c1c1e;
  font-weight: 800;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  grid-template-areas:
    "media heading"
    "media buy";
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.product-heading-card,
.product-buy-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(28,28,30,.08);
  box-shadow: 0 26px 90px rgba(28,28,30,.10);
  backdrop-filter: blur(14px);
}
.product-heading-card {
  grid-area: heading;
}
.product-buy-card {
  grid-area: buy;
}
.product-heading-card h1 {
  font-size: clamp(34px, 4vw, 58px);
  max-width: 820px;
}
.product-price-panel {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 20px;
  background: #1c1c1e;
  color: #fff;
}
.product-price-panel span,
.product-price-panel small {
  color: rgba(255,255,255,.68);
}
.product-price-panel > span { color: #fff; }
.product-price-panel strong {
  font-size: 30px;
  line-height: 1;
}
.product-price-value { margin: 3px 0; font-size: 30px; font-weight: 800; line-height: 1; }
.product-price-panel .price-current,
.product-price-panel .price-current .price-prefix,
.product-price-panel .price-current .byn-symbol { color: #fff; }
.product-price-panel .has-discount .price-current,
.product-price-panel .has-discount .price-current .price-prefix,
.product-price-panel .has-discount .price-current .byn-symbol { color: #ff4058; }
.product-price-panel .price-old { color: rgba(255,255,255,.52); font-size: 16px; }
.product-price-panel .price-discount { background: rgba(255,255,255,.1); color: #fff; font-size: 12px; }
.product-price-panel > small { color: #fff; opacity: 1; font-weight: 600; }
.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-mini-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.product-mini-specs div {
  min-height: 86px;
  padding: 14px;
  border-radius: 16px;
  background: #f4f1ec;
  border: 1px solid rgba(28,28,30,.06);
}
.product-mini-specs span {
  display: block;
  margin-bottom: 7px;
  color: #7a756d;
  font-size: 12px;
}
.product-mini-specs strong {
  display: block;
  color: #1c1c1e;
  font-size: 14px;
  line-height: 1.25;
}
.product-mini-specs .mini-price { white-space: nowrap; }
.product-media-stack {
  grid-area: media;
  display: grid;
  gap: 14px;
  min-width: 0;
}
.product-gallery {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.product-main-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 96px rgba(28,28,30,.16);
}
.product-gallery-frame {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.product-main-photo img,
.product-thumb img,
.related-product-media picture,
.related-product-media img {
  width: 100%;
  height: 100%;
}
.product-main-photo img,
.product-thumb img,
.related-product-media img {
  object-fit: contain;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.88);
  color: #1c1c1e;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-counter {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(28,28,30,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}
.product-thumb-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}
.product-thumb {
  flex: 0 0 112px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: .72;
  transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
}
.product-thumb:hover,
.product-thumb.is-active {
  opacity: 1;
  border-color: #b91f2d;
}
.product-thumb.is-active {
  transform: translateY(-1px);
}
.product-video-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 26px;
  background: #1c1c1e;
  color: #fff;
  display: grid;
  padding: 0;
  border: 1px solid rgba(28,28,30,.12);
  box-shadow: 0 28px 80px rgba(28,28,30,.20);
}
.product-video-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(28,28,30,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}
.product-video-label:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b91f2d;
}
.product-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
  border: 0;
  border-radius: 26px;
}
.product-video-card .eyebrow {
  color: rgba(255,255,255,.76);
  margin-bottom: 10px;
}
.product-video-card .eyebrow:before {
  background: #fff;
}
.product-video-card h2 {
  font-size: 28px;
}
.product-video-card p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.76);
}
.video-play-mark {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}
.video-play-mark span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #b91f2d;
}
.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 20px;
}
.product-info-section {
  padding: 38px 0 44px;
}
.product-description-card,
.product-spec-card {
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(28,28,30,.08);
  box-shadow: 0 22px 70px rgba(28,28,30,.08);
}
.product-description-card p {
  color: #5f625e;
  font-size: 17px;
}
.product-description-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.product-description-card li {
  position: relative;
  padding-left: 22px;
  color: #454943;
}
.product-description-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b91f2d;
}
.product-spec-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.product-spec-board div {
  display: grid;
  gap: 5px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(28,28,30,.09);
}
.product-spec-board span {
  color: #77746e;
  font-size: 12px;
}
.product-spec-board strong {
  color: #1c1c1e;
  line-height: 1.28;
}
.product-process-section {
  padding: 54px 0;
  background: #1c1c1e;
  color: #fff;
}
.product-process-section .eyebrow,
.product-process-section p {
  color: rgba(255,255,255,.68);
}
.product-process-section .eyebrow {
  width: fit-content;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.product-process-section .eyebrow:before { background: #28c76f; }
.product-process-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}
.product-process-copy {
  display: grid;
  align-content: center;
  gap: 15px;
  min-height: 100%;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.product-process-copy h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: .98;
}
.product-process-copy p {
  margin: 0;
}
.product-process-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.product-process-facts span {
  min-height: 58px;
  display: grid;
  align-content: center;
  padding: 11px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  line-height: 1.25;
}
.product-steps {
  display: grid;
  gap: 10px;
}
.product-steps div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.product-steps strong {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 1px;
  background: #b91f2d;
  font-size: 16px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}
.product-steps span {
  color: rgba(255,255,255,.78);
}
.related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.related-product-card {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28,28,30,.08);
  box-shadow: 0 18px 54px rgba(28,28,30,.08);
}
.related-product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}
.related-product-media picture,
.related-product-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.related-product-info {
  display: grid;
  gap: 7px;
  padding: 16px;
}
.related-product-info small {
  color: #77746e;
}
.related-product-info strong {
  color: #1c1c1e;
  line-height: 1.22;
}
.related-product-info em {
  color: #b91f2d;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .product-hero-grid,
  .product-info-grid,
  .product-process-grid {
    grid-template-columns: 1fr;
  }
  .product-hero-grid {
    grid-template-areas:
      "heading"
      "media"
      "buy";
    gap: 20px;
  }
  .product-process-copy {
    min-height: auto;
  }
  .related-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: 18px;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  overflow: hidden;
  background: rgba(10,10,11,.92);
  color: #fff;
  backdrop-filter: blur(18px);
}
.product-lightbox.is-open {
  display: grid;
}
body.lightbox-open {
  overflow: hidden;
}
.lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lightbox-title {
  min-width: 0;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 0;
  position: relative;
}
.lightbox-close {
  width: 44px;
  height: 44px;
}
.lightbox-close:before,
.lightbox-close:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.lightbox-close:before {
  transform: rotate(45deg);
}
.lightbox-close:after {
  transform: rotate(-45deg);
}
.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 66px;
}
.lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1180px, 100%);
  max-height: calc(100dvh - 148px);
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}
.lightbox-nav:before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-radius: 2px;
}
.lightbox-prev:before {
  transform: translateX(2px) rotate(-45deg);
}
.lightbox-next:before {
  transform: translateX(-2px) rotate(135deg);
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-counter {
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

@media (max-width: 640px) {
  .product-detail-hero {
    padding: 112px 0 34px;
  }
  .product-breadcrumbs {
    display: none;
  }
  .product-heading-card,
  .product-buy-card,
  .product-description-card,
  .product-spec-card {
    padding: 20px;
    border-radius: 22px;
  }
  .product-heading-card h1 {
    font-size: 32px;
  }
  .product-action-row .btn {
    width: 100%;
  }
  .product-mini-specs,
  .related-product-grid {
    grid-template-columns: 1fr;
  }
  .product-thumb {
    flex-basis: 86px;
    border-radius: 14px;
  }
  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 27px;
  }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-counter {
    left: 12px;
    bottom: 12px;
  }
  .product-main-photo,
  .product-video-card {
    border-radius: 22px;
  }
  .product-video-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }
  .product-process-section {
    padding: 36px 0;
  }
  .product-process-facts {
    grid-template-columns: 1fr;
  }
  .video-play-mark {
    width: 58px;
    height: 58px;
  }
  .product-steps div {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .product-steps strong {
    width: 38px;
    height: 38px;
  }
  .product-lightbox {
    padding: 12px;
  }
  .lightbox-stage {
    padding: 0 16px;
  }
  .lightbox-stage img {
    max-width: 100%;
    max-height: calc(100dvh - 126px);
    border-radius: 16px;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 31px;
  }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* Final interface polish */
.living-hero .eyebrow {
  max-width: 100%;
  min-height: 0;
  padding: 10px 16px;
  line-height: 1.35;
  white-space: normal;
}
.legal-page .page-hero h1 {
  max-width: 1080px;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.catalog-filter-panel,
.project-filter-panel {
  align-items: end;
}
.filter-head {
  align-items: center;
}
.filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.filter-reset:hover {
  color: #fff;
  background: #b91f2d;
  border-color: #b91f2d;
  transform: translateY(-1px);
}
.field select {
  appearance: none;
  padding-right: 50px;
  background-color: #fff;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231c1c1e' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"),
    radial-gradient(circle at calc(100% - 25px) 50%, rgba(28,28,30,.08) 0 18px, transparent 19px);
  background-position: right 16px center, 0 0;
  background-size: 18px 18px, 100% 100%;
  background-repeat: no-repeat;
}
.catalog-filter-panel .check-field {
  display: grid;
  grid-template-columns: 22px auto;
  width: max-content;
  min-width: 142px;
  justify-content: center;
  align-items: center;
  justify-self: center;
  gap: 10px;
  text-align: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 18px;
  border-color: rgba(28,28,30,.1);
  background: #fff;
  color: #1c1c1e;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.catalog-filter-panel .check-field:hover {
  color: #1c1c1e;
  border-color: rgba(28,28,30,.26);
  background: rgba(28,28,30,.04);
  box-shadow: 0 12px 28px rgba(28,28,30,.08);
}
.catalog-filter-panel .check-field input {
  appearance: none;
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid rgba(28,28,30,.28);
  border-radius: 999px;
  background: #f7f2e8;
  flex: 0 0 auto;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.catalog-filter-panel .check-field input:checked {
  background: #1c1c1e;
  border-color: #1c1c1e;
  box-shadow: 0 8px 20px rgba(28,28,30,.22);
}
.catalog-filter-panel .check-field input:checked:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -58%) rotate(42deg);
  transform-origin: center;
}
.field-price {
  align-self: end;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28,28,30,.08);
}
.field-price label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}
.field-price [data-price-value] {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(185,31,45,.1);
  color: #b91f2d;
  white-space: nowrap;
}
.field-price input[type="range"] {
  --range-progress: 100%;
  appearance: none;
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.field-price input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b91f2d 0 var(--range-progress), #ebe4dc var(--range-progress) 100%);
}
.field-price input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border-radius: 999px;
  background: #b91f2d;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(185,31,45,.32);
}
.field-price input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: #ebe4dc;
}
.field-price input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: #b91f2d;
}
.field-price input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #b91f2d;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(185,31,45,.32);
}
.selected-product-field {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.selected-product-field input[readonly] {
  cursor: default;
}
#lead .field input,
#lead .field select,
#lead .field textarea {
  background-color: #fff;
  color: #1c1c1e;
  border-color: rgba(28,28,30,.14);
}
#lead .field input:focus-visible,
#lead .field select:focus-visible,
#lead .field textarea:focus-visible {
  outline: none;
  border-color: rgba(185,31,45,.9);
  box-shadow: 0 0 0 2px rgba(185,31,45,.18);
}
#lead .field select {
  appearance: none;
  padding-right: 50px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231c1c1e' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E"),
    radial-gradient(circle at calc(100% - 25px) 50%, rgba(28,28,30,.08) 0 18px, transparent 19px);
  background-position: right 16px center, 0 0;
  background-size: 18px 18px, 100% 100%;
  background-repeat: no-repeat;
}
#lead .field input::placeholder,
#lead .field textarea::placeholder {
  color: #898d93;
}
.required-mark {
  color: #ef4444;
  font-weight: 900;
}
.optional-mark {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 6px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
}
.file-upload-field {
  position: relative;
}
.file-upload-field .file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.file-drop {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(185,31,45,.34);
  background:
    linear-gradient(135deg, rgba(185,31,45,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.04);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.file-drop:hover,
.file-drop.is-selected {
  border-color: rgba(185,31,45,.78);
  background:
    linear-gradient(135deg, rgba(185,31,45,.2), rgba(255,255,255,.07)),
    rgba(255,255,255,.06);
}
.file-drop.is-error {
  border-color: #ef4444;
  background: rgba(239,68,68,.12);
}
.file-drop:hover {
  transform: translateY(-1px);
}
.file-drop-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #b91f2d;
  color: #fff;
  box-shadow: 0 16px 34px rgba(185,31,45,.25);
  line-height: 0;
}
.file-drop-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#b91f2d, #b91f2d) center / 10px 2px no-repeat,
    linear-gradient(#b91f2d, #b91f2d) center / 2px 10px no-repeat,
    #fff;
  box-shadow: 0 5px 12px rgba(0,0,0,.2);
}
.file-drop-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.file-drop strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}
.file-drop small {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.35;
}
.file-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.file-preview-grid:empty {
  display: none;
}
.file-preview-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #1c1c1e;
}
.file-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.file-preview-item span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(28,28,30,.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.file-preview-number {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(28,28,30,.82);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.file-preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #1c1c1e;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.file-preview-remove:hover {
  background: #b91f2d;
  color: #fff;
  transform: scale(1.04);
}
.file-preview-remove svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
}
.project-stories .story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}
.project-card .card-body {
  min-height: 360px;
}
.project-card .tag {
  width: fit-content;
}
.project-stories .story-card,
.project-stories .story-card:first-child {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.project-stories .story-card .card-media,
.project-stories .story-card:first-child .card-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 6px 6px 0 0;
}
.project-stories .story-card .card-body,
.project-stories .story-card:first-child .card-body {
  display: grid;
  align-content: start;
  flex: 1;
  gap: 11px;
  padding: 18px;
}
.project-stories .story-card h3,
.project-stories .story-card:first-child h3 {
  height: 48px;
  overflow: hidden;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.project-stories .story-card .meta-row {
  margin: 0;
  gap: 6px;
}
.project-stories .story-card .tag {
  min-height: 26px;
  padding: 0 8px;
  font-size: 11px;
}
.project-stories .story-card .case-summary {
  height: 54px;
  overflow: hidden;
  margin: 0;
  color: #666b70;
  font-size: 12px;
  line-height: 1.5;
}
.project-stories .story-card .case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.project-stories .story-card .case-grid span {
  min-width: 0;
  height: 72px;
  overflow: hidden;
  padding: 10px;
  border-radius: 6px;
  background: #f5f5f5;
  color: #565b60;
  font-size: 12px;
  line-height: 1.35;
}
.project-stories .story-card .case-grid strong {
  margin-bottom: 3px;
  color: #1c1c1e;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.project-stories .story-card .btn {
  width: 100%;
  margin-top: 0;
  text-align: center;
}
.lead-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(10,10,11,.58);
  backdrop-filter: blur(14px);
}
.lead-success-modal.is-open {
  display: grid;
}
.lead-success-card {
  width: min(440px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  color: #1c1c1e;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.lead-success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
.lead-success-card h3 {
  color: #1c1c1e;
}
.lead-success-card p {
  margin: 0;
  color: #60646b;
}
.lead-success-card [data-lead-reference] {
  color: #77777c;
  font-size: 11px;
}
.lead-success-card .btn {
  margin-top: 4px;
}
.catalog-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.catalog-nav-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.catalog-nav-toggle svg path {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .2s ease;
}
.catalog-nav-toggle[aria-expanded="true"] svg path:first-child {
  transform: translateY(4px) rotate(45deg);
}
.catalog-nav-toggle[aria-expanded="true"] svg path:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.catalog-mega {
  position: fixed;
  top: 116px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100vh - 138px);
  overflow: auto;
  transform: translate(-50%, -12px);
  padding: 18px;
  border: 1px solid rgba(28,28,30,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.catalog-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.catalog-mega-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(220px, .7fr) minmax(360px, 1.25fr);
  gap: 18px;
}
.mega-category-list {
  display: grid;
  gap: 6px;
}
.mega-category-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 7px 10px;
  border-radius: 10px;
  color: #242426;
}
.mega-category-link:hover {
  background: #f1f1ef;
}
.mega-category-link img {
  width: 58px;
  height: 50px;
  object-fit: cover;
  border-radius: 7px;
}
.mega-category-link strong,
.mega-category-link small {
  display: block;
}
.mega-category-link strong {
  font-size: 13px;
}
.mega-category-link small {
  margin-top: 3px;
  color: #77777d;
  font-size: 10px;
}
.mega-category-link > span:last-child {
  color: #8a8a90;
  font-size: 18px;
}
.mega-directions {
  padding: 16px;
  border-left: 1px solid #dededb;
}
.mega-directions > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mega-directions a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #ececea;
  color: #36363a;
  font-size: 13px;
}
.mega-directions a:hover {
  color: #bd2030;
}
.mega-promo {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 14px;
  background: #1c1c1e;
  color: #fff;
}
.mega-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-promo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.12));
}
.mega-promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(78%, 330px);
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}
.mega-promo-copy span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.mega-promo-copy strong {
  margin: 8px 0;
  font-size: 27px;
  line-height: 1.05;
}
.mega-promo-copy small {
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}
.mega-promo-copy em {
  margin-top: 18px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.header-cart-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #1c1c1e;
  color: #fff;
  cursor: pointer;
}
.site-header .header-socials {
  display: none;
}
.header-cart-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #bd2030;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.catalog-showcase {
  padding: 142px 0 30px;
}
.catalog-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.catalog-showcase-head h1 {
  max-width: 760px;
  margin: 8px 0 0;
}
.catalog-category-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.catalog-category-pills a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid #dededb;
  border-radius: 999px;
  background: #fff;
  color: #353539;
  font-size: 12px;
  font-weight: 700;
}
.catalog-category-pills a:hover {
  border-color: #1c1c1e;
  background: #1c1c1e;
  color: #fff;
}
.catalog-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 18px;
  background: #1c1c1e;
}
.catalog-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.catalog-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.catalog-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.34) 48%, rgba(0,0,0,.08) 78%);
}
.catalog-slide-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(24px, 6vw, 76px);
  width: min(520px, calc(100% - 110px));
  transform: translateY(-50%);
  color: #fff;
}
.catalog-slide-copy span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.catalog-slide-copy h2 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
}
.catalog-slide-copy p {
  max-width: 470px;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.6;
}
.catalog-slide-copy .btn {
  margin-top: 16px;
}
.catalog-slider-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #1c1c1e;
  font-size: 25px;
  cursor: pointer;
}
.catalog-slider-prev { left: 16px; }
.catalog-slider-next { right: 16px; }
.catalog-slider-dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 7px;
}
.catalog-slider-dots button {
  width: 26px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
}
.catalog-slider-dots button.is-active {
  background: #fff;
}
.cart-overlay {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100%;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition: transform .25s ease;
}
.cart-overlay.is-open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-head,
.cart-drawer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cart-drawer-head {
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e2df;
}
.cart-drawer-head h2 {
  margin: 0;
  font-size: 25px;
}
.cart-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #f0f0ee;
  font-size: 22px;
  cursor: pointer;
}
.cart-items {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  overflow: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 34px;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e1e1df;
  border-radius: 10px;
}
.cart-item img {
  width: 82px;
  height: 74px;
  object-fit: contain;
  border-radius: 7px;
  background: #f4f4f2;
}
.cart-item strong,
.cart-item span {
  display: block;
}
.cart-item strong {
  font-size: 13px;
  line-height: 1.25;
}
.cart-item span {
  margin-top: 6px;
  color: #6f6f75;
  font-size: 11px;
}
.cart-remove {
  align-self: start;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f1f1ef;
  color: #bd2030;
  cursor: pointer;
}
.cart-empty {
  padding: 44px 20px;
  color: #77777d;
  text-align: center;
}
.cart-drawer-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e2e2df;
}
.cart-drawer-foot .btn {
  width: 100%;
}
.cart-form-summary {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}
.cart-form-summary.is-empty {
  color: rgba(255,255,255,.64);
}
.cart-form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cart-form-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.cart-add.is-added {
  background: #2f6f60;
  color: #fff;
}
@media (max-width: 640px) {
  .living-hero .eyebrow {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: .08em;
  }
  .living-hero .eyebrow:before {
    margin: 0;
  }
  .filter-head {
    align-items: stretch;
  }
  .catalog-filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-filter-panel .field,
  .catalog-filter-panel .field-wide,
  .catalog-filter-panel .field-price,
  .project-filter-panel .field,
  .filter-head {
    grid-column: 1 / -1;
  }
  .catalog-filter-panel .check-field {
    grid-column: span 1;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 10px;
    gap: 8px;
  }
  .field-price {
    padding: 12px;
  }
  .field-price label {
    display: grid;
    justify-items: start;
    gap: 8px;
  }
  .file-drop {
    min-height: 108px;
    padding: 16px;
  }
  .file-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .optional-mark {
    margin: 6px 0 0;
  }
  .lead-success-card {
    padding: 24px;
    border-radius: 22px;
  }
  .project-stories .story-grid {
    grid-template-columns: 1fr;
  }
  .catalog-showcase {
    padding-top: 104px;
  }
  .catalog-showcase-head {
    display: block;
  }
  .catalog-slider {
    min-height: 520px;
    border-radius: 12px;
  }
  .catalog-slide-copy {
    top: auto;
    right: 22px;
    bottom: 46px;
    left: 22px;
    width: auto;
    transform: none;
  }
  .catalog-slide-copy h2 {
    font-size: 39px;
  }
  .catalog-slide-copy p {
    font-size: 14px;
  }
  .catalog-slider-nav {
    top: 44%;
    width: 40px;
    height: 40px;
  }
  .cart-drawer {
    padding: 18px;
  }
}
@media (max-width: 820px) {
  .catalog-nav-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 13px;
    border-radius: 6px;
  }
  .catalog-mega {
    top: 92px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 108px);
    padding: 12px;
    border-radius: 16px;
  }
  .catalog-mega-grid {
    grid-template-columns: 1fr;
  }
  .mega-directions {
    border-top: 1px solid #dededb;
    border-left: 0;
  }
  .mega-promo {
    min-height: 270px;
  }
  .mega-promo-copy {
    min-height: 270px;
  }
  .header-cart-button {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 861px) and (max-width: 1180px) {
  .project-stories .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 641px) and (max-width: 860px) {
  .project-stories .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Full-width navigation and interactive catalog */
.site-header {
  top: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(28,28,30,.09);
  box-shadow: 0 10px 34px rgba(28,28,30,.08);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}
.nav {
  width: min(1440px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.brand {
  flex: 0 0 auto;
  gap: 11px;
}
.brand-logo {
  width: 68px;
  height: 42px;
  border-radius: 0;
}
.brand-logo img {
  width: 64px;
}
.brand span.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0;
}
.brand-copy span,
.brand span.brand-copy span:last-child {
  color: #73767c;
  font-size: 11px;
  font-weight: 600;
}
.nav-links {
  gap: clamp(16px, 2.2vw, 34px);
}
.catalog-nav-toggle {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: #1c1c1e;
  color: #fff;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.catalog-nav-toggle:hover,
.catalog-nav-toggle[aria-expanded="true"] {
  background: #b91f2d;
  box-shadow: 0 10px 24px rgba(185,31,45,.18);
}
.header-actions .btn-secondary {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 8px;
}
.header-cart-button {
  border-radius: 8px;
}
.catalog-mega {
  top: 86px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100dvh - 86px);
  padding: 22px max(24px, calc((100vw - 1440px) / 2));
  border-width: 1px 0;
  border-radius: 0 0 20px 20px;
  transform: translateY(-10px);
  background: rgba(255,255,255,.985);
  box-shadow: 0 32px 74px rgba(0,0,0,.16);
  transition: none;
}
.catalog-mega.is-open {
  transform: translateY(0);
}
.catalog-mega-grid {
  grid-template-columns: minmax(270px, 320px) minmax(390px, 470px) minmax(360px, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.mega-column-label {
  display: block;
  margin-bottom: 10px;
  color: #777b82;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega-category-list {
  align-content: start;
  padding-right: 18px;
  border-right: 1px solid #e2e2df;
}
.mega-category-link {
  grid-template-columns: 52px minmax(0, 1fr) 18px;
  min-height: 58px;
  padding: 6px 9px;
  border: 1px solid transparent;
}
.mega-category-link:hover,
.mega-category-link.is-active {
  border-color: rgba(185,31,45,.12);
  background: #f5f2f0;
}
.mega-category-link img {
  width: 52px;
  height: 46px;
  object-fit: contain;
  background: #fff;
}
.mega-category-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8a8a90;
  stroke-width: 2;
  transition: transform .18s ease, stroke .18s ease;
}
.mega-category-link:hover svg,
.mega-category-link.is-active svg {
  stroke: #b91f2d;
  transform: translateX(2px);
}
.mega-all-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 10px 4px;
  color: #1c1c1e;
  font-size: 12px;
  font-weight: 900;
}
.mega-all-link span:last-child {
  color: #777b82;
  font-size: 10px;
  font-weight: 700;
}
.mega-category-details {
  min-width: 0;
  padding: 5px 0;
}
.mega-category-panel {
  display: none;
}
.mega-category-panel.is-active {
  display: block;
  animation: megaPanelIn .2s ease both;
}
@keyframes megaPanelIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}
.mega-panel-head {
  margin-bottom: 16px;
}
.mega-panel-head h3 {
  margin: 0;
  color: #1c1c1e;
  font-size: 24px;
  line-height: 1.15;
}
.mega-panel-head p {
  margin: 7px 0 0;
  color: #74777d;
  font-size: 12px;
  line-height: 1.5;
}
.mega-detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(145px, .75fr);
  gap: 20px;
}
.mega-product-list,
.mega-variant-list {
  min-width: 0;
}
.mega-product-list > strong,
.mega-variant-list > strong,
.mega-materials > strong {
  display: block;
  margin-bottom: 8px;
  color: #303034;
  font-size: 11px;
  letter-spacing: .04em;
}
.mega-product-list > a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #ececea;
}
.mega-product-list img {
  width: 46px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
  background: #f4f4f2;
}
.mega-product-list b,
.mega-product-list small {
  display: block;
}
.mega-product-list b {
  overflow: hidden;
  color: #333337;
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-product-list small {
  margin-top: 2px;
  color: #85858b;
  font-size: 9px;
}
.mega-product-list > a:hover b {
  color: #b91f2d;
}
.mega-variant-list > a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #ececea;
  color: #404044;
  font-size: 11px;
}
.mega-variant-list > a:hover {
  color: #b91f2d;
}
.mega-variant-list > a small {
  color: #94949a;
}
.mega-materials {
  margin-top: 18px;
}
.mega-materials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mega-materials a,
.mega-materials span,
.mega-empty {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  background: #f1f1ef;
  color: #55585e;
  font-size: 9px;
  line-height: 1.25;
}
.mega-materials a:hover {
  background: #1c1c1e;
  color: #fff;
}
.mega-promos {
  position: relative;
  min-height: 430px;
}
.mega-promo {
  position: absolute;
  inset: 0;
  display: none;
  min-height: 430px;
  border-radius: 14px;
}
.mega-promo.is-active {
  display: block;
  animation: megaPanelIn .24s ease both;
}
.mega-promo-copy {
  min-height: 430px;
  padding: 28px;
}
.mega-promo-copy em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.close-icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
}
.cart-close,
.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.cart-close:hover {
  background: #1c1c1e;
  color: #fff;
  transform: rotate(3deg);
}
.cart-remove .close-icon {
  width: 16px;
  height: 16px;
}
.cart-remove:hover {
  background: #b91f2d;
  color: #fff;
}
.lightbox-close:before,
.lightbox-close:after {
  display: none;
}
.lightbox-close .close-icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 1180px) {
  .catalog-mega-grid {
    grid-template-columns: minmax(250px, 290px) minmax(340px, 1fr) minmax(300px, .9fr);
  }
  .brand span.brand-copy {
    display: none;
  }
}
@media (max-width: 820px) {
  .site-header {
    top: 0;
    border-radius: 0;
  }
  .nav {
    width: 100%;
    min-height: 68px;
    height: 68px;
    padding: 0 14px;
    border-radius: 0;
  }
  .brand-logo {
    width: 60px;
    height: 36px;
  }
  .brand-logo img {
    width: 56px;
  }
  .nav-links {
    top: 76px;
    left: 12px;
    right: 12px;
    border-radius: 12px;
  }
  .catalog-nav-toggle {
    min-height: 46px;
    padding: 0 13px;
    border-radius: 8px;
  }
  .catalog-mega {
    top: 68px;
    width: 100%;
    max-height: calc(100dvh - 68px);
    padding: 14px;
    border-radius: 0 0 16px 16px;
  }
  .catalog-mega-grid {
    grid-template-columns: 1fr;
  }
  .mega-category-list {
    padding: 0;
    border: 0;
  }
  .mega-category-details,
  .mega-promos {
    display: none;
  }
  .mega-category-link {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
  }
  .catalog-showcase {
    padding-top: 96px;
  }
}

/* Larger header with upper navigation */
.up-header {
  min-height: 38px;
  border-bottom: 1px solid rgba(28,28,30,.07);
  background: rgba(248,248,247,.96);
}
.up-header-inner {
  width: min(1440px, calc(100% - 48px));
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 52px);
  margin: 0 auto;
}
.up-header a {
  color: #343438;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color .18s ease;
}
.up-header a:hover {
  color: #b91f2d;
}
.nav {
  min-height: 98px;
}
.brand-logo {
  width: 86px;
  height: 54px;
}
.brand-logo img {
  width: 82px;
}
.catalog-mega {
  top: 138px;
  max-height: calc(100dvh - 138px);
}
.hero.living-hero {
  padding-top: 176px;
}
.catalog-showcase {
  padding-top: 176px;
}
.product-detail-hero {
  padding-top: clamp(176px, 12vw, 194px);
}
.page-hero {
  padding-top: 176px;
}
@media (max-width: 820px) {
  .up-header {
    display: none;
  }
  .nav {
    min-height: 72px;
    height: 72px;
  }
  .brand-logo {
    width: 72px;
    height: 44px;
  }
  .brand-logo img {
    width: 68px;
  }
  .nav-links {
    top: 80px;
  }
  .catalog-mega {
    top: 72px;
    max-height: calc(100dvh - 72px);
  }
  .catalog-showcase {
    padding-top: 106px;
  }
  .product-detail-hero {
    padding-top: 118px;
  }
  .legal-hero-visual {
    opacity: .34;
    right: -78px;
    bottom: 18px;
    width: 260px;
    height: 210px;
  }
  .legal-hero-mark {
    right: 20px;
    bottom: 34px;
    width: 88px;
    height: 88px;
    font-size: 9px;
  }
}

.discount-widget {
  position: fixed;
  z-index: 58;
  right: 135px;
  bottom: 12px;
  width: 240px;
  height: 300px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.discount-widget.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.discount-teaser {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1c1c1e;
  cursor: pointer;
}
.discount-character {
  position: absolute;
  right: -18px;
  bottom: -64px;
  width: 238px;
  max-width: none;
  pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.2));
  transform: scaleX(-1);
  transform-origin: center bottom;
  animation: discountCharacterFloat 3.2s ease-in-out infinite;
}
.discount-dismiss {
  position: absolute;
  z-index: 6;
  top: 10px;
  right: -2px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(28,28,30,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #1c1c1e;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  cursor: pointer;
}
.discount-dismiss:hover {
  background: #1c1c1e;
  color: #fff;
}
.discount-dismiss .close-icon {
  width: 15px;
  height: 15px;
}
.discount-bubble {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: -80px;
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 13px 16px;
  border: 1px solid rgba(28,28,30,.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(28,28,30,.18);
  text-align: left;
}
.discount-bubble:after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: 22px;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
}
.discount-bubble small,
.discount-bubble strong {
  position: relative;
  z-index: 1;
}
.discount-bubble small {
  color: #686b72;
  font-size: 10px;
  font-weight: 800;
}
.discount-bubble strong {
  color: #b91f2d;
  font-size: 30px;
  line-height: 1;
}
.discount-card {
  position: absolute;
  z-index: 4;
  right: 178px;
  bottom: 58px;
  display: grid;
  width: 324px;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(28,28,30,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(14px) scale(.98);
  transform-origin: right bottom;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.discount-widget.is-open .discount-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.discount-card-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f0f0ee;
  color: #1c1c1e;
  cursor: pointer;
}
.discount-card-close .close-icon {
  width: 16px;
  height: 16px;
}
.discount-card-kicker {
  color: #b91f2d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.discount-card h3 {
  max-width: 250px;
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}
.discount-card p {
  margin: 0;
  color: #686b72;
  font-size: 13px;
  line-height: 1.5;
}
.discount-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 10px;
  background: #1c1c1e;
  color: #fff;
}
.discount-value span {
  color: rgba(255,255,255,.66);
  font-size: 11px;
}
.discount-value strong {
  color: #fff;
  font-size: 24px;
}
.discount-activate {
  width: 100%;
}
.discount-widget.is-activated .discount-bubble {
  background: #1c1c1e;
  color: #fff;
}
.discount-widget.is-activated .discount-bubble:after {
  background: #1c1c1e;
}
.discount-widget.is-activated .discount-bubble small {
  color: rgba(255,255,255,.68);
}
.discount-widget.is-activated .discount-bubble strong {
  color: #fff;
  font-size: 19px;
}
.discount-cart-applied,
.discount-form-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(185,31,45,.22);
  border-radius: 10px;
  background: rgba(185,31,45,.08);
  color: #1c1c1e;
}
.discount-cart-applied[hidden],
.discount-form-applied[hidden] {
  display: none;
}
.discount-cart-applied {
  margin-top: 10px;
}
.discount-cart-applied span,
.discount-form-applied span {
  color: #686b72;
  font-size: 11px;
}
.discount-cart-applied strong,
.discount-form-applied strong {
  color: #b91f2d;
  white-space: nowrap;
}
.discount-form-applied {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.discount-form-applied span {
  color: rgba(255,255,255,.7);
}

/* Article archive and long-form pages */
.article-archive-hero,
.article-detail-hero {
  position: relative;
  min-height: clamp(390px, 54vw, 620px);
  overflow: hidden;
  background: #202321;
  color: #fff;
}
.article-archive-hero > img,
.article-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-archive-hero:after,
.article-detail-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,20,19,.88) 0%, rgba(18,20,19,.6) 48%, rgba(18,20,19,.22) 100%);
}
.article-archive-hero .container,
.article-detail-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: flex-end;
  padding-top: 96px;
  padding-bottom: 58px;
}
.article-hero-copy {
  display: grid;
  max-width: 860px;
  gap: 18px;
}
.article-hero-copy .eyebrow {
  width: fit-content;
  border-color: rgba(255,255,255,.28);
  background: rgba(20,22,21,.42);
  color: #fff;
}
.article-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.32);
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .98;
}
.article-hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}
.article-hero-copy .breadcrumbs { color: rgba(255,255,255,.62); }
.article-hero-copy .breadcrumbs a { color: #fff; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}
.article-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(18,20,19,.36);
  backdrop-filter: blur(8px);
}
.article-archive-section {
  padding: 56px 0 96px;
}
.article-toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid rgba(32,36,33,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 42px rgba(61,53,40,.08);
}
.article-toolbar-top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.article-toolbar-top strong {
  font-size: 18px;
}
.article-toolbar-top span {
  color: var(--muted);
  font-size: 13px;
}
.article-search {
  position: relative;
  display: block;
  flex: 1 1 430px;
  max-width: 560px;
}
.article-search svg {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transform: translateY(-50%);
  pointer-events: none;
}
.article-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 16px 11px 48px;
  border: 1px solid rgba(32,36,33,.16);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.article-search input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(198,31,47,.12);
}
.article-topic-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.article-topic-filter {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(32,36,33,.13);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.article-topic-filter:hover,
.article-topic-filter.is-active {
  border-color: #252926;
  background: #252926;
  color: #fff;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.article-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(32,36,33,.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(61,53,40,.08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.article-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 46px rgba(61,53,40,.13);
  transform: translateY(-3px);
}
.article-card[hidden] { display: none; }
.article-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e4dd;
}
.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.article-card:hover .article-card-media img { transform: scale(1.025); }
.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
.article-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.article-card-meta span:first-child {
  color: var(--accent);
  text-transform: uppercase;
}
.article-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}
.article-card h2 a { color: inherit; }
.article-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.article-card .article-card-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(32,36,33,.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.article-empty {
  padding: 48px 24px;
  border: 1px dashed rgba(32,36,33,.18);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}
.article-empty[hidden] { display: none; }
.article-detail-main { padding-bottom: 84px; }
.article-detail-wrap {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 820px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  justify-content: center;
  padding-top: 48px;
}
.article-detail-wrap-wide {
  grid-template-columns: minmax(0, 820px);
}
.article-toc {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(32,36,33,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(61,53,40,.07);
}
.article-toc strong {
  font-size: 13px;
  text-transform: uppercase;
}
.article-toc nav {
  display: grid;
  gap: 9px;
}
.article-toc a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.article-toc a:hover { color: var(--accent); }
.article-toc a[data-level="3"] { padding-left: 12px; }
.article-body {
  min-width: 0;
  color: #343a36;
  font-size: 17px;
  line-height: 1.78;
}
.article-body > :first-child { margin-top: 0; }
.article-body h2,
.article-body h3 {
  scroll-margin-top: 160px;
  color: var(--text);
  line-height: 1.12;
}
.article-body h2 {
  margin: 48px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
}
.article-body h3 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 2.3vw, 29px);
}
.article-body p { margin: 0 0 20px; }
.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body li::marker { color: var(--accent); font-weight: 800; }
.article-body a {
  color: #9f1c2a;
  text-decoration: underline;
  text-decoration-color: rgba(159,28,42,.3);
  text-underline-offset: 3px;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
}
.article-body img {
  display: block;
  width: 100%;
  max-height: 620px;
  margin: 28px auto;
  border: 1px solid rgba(32,36,33,.1);
  border-radius: 12px;
  object-fit: contain;
  background: #f4f1eb;
}
.article-inline-image { margin: 30px 0; }
.article-inline-image img { margin: 0; }
.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
  padding: 28px;
  border-radius: 14px;
  background: #232724;
  color: #fff;
}
.article-cta h2 { margin: 0 0 8px; color: #fff; font-size: 28px; }
.article-cta p { margin: 0; color: rgba(255,255,255,.68); }
.article-commercial-links { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 14px; }
.article-commercial-links a { color: #fff; font-size: 14px; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255,255,255,.34); text-underline-offset: 4px; }
.article-commercial-links a:hover { text-decoration-color: var(--accent); }
.article-cta .btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
.article-cta .btn:hover { background: #a61928; color: #fff; }
.article-related { padding-top: 72px; }
.article-related .section-head { margin-bottom: 26px; }

@media (max-width: 1080px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-detail-wrap { grid-template-columns: 220px minmax(0, 1fr); gap: 34px; }
}
@media (max-width: 760px) {
  .article-archive-hero,
  .article-detail-hero { min-height: 440px; }
  .article-archive-hero:after,
  .article-detail-hero:after { background: linear-gradient(0deg, rgba(18,20,19,.92), rgba(18,20,19,.28)); }
  .article-archive-hero .container,
  .article-detail-hero .container { padding-top: 86px; padding-bottom: 34px; }
  .article-hero-copy { gap: 14px; }
  .article-hero-copy h1 { font-size: clamp(34px, 10vw, 52px); line-height: 1.02; }
  .article-archive-section { padding: 34px 0 68px; }
  .article-toolbar { padding: 14px; }
  .article-toolbar-top { align-items: stretch; flex-direction: column; }
  .article-search { max-width: none; flex-basis: auto; }
  .article-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-card { border-radius: 12px; }
  .article-card-media { aspect-ratio: 16 / 9; }
  .article-card-body { padding: 17px; }
  .article-detail-wrap { display: block; padding-top: 28px; }
  .article-toc { position: static; margin-bottom: 28px; }
  .article-body { font-size: 16px; line-height: 1.7; }
  .article-body h2 { margin-top: 38px; }
  .article-body img { max-height: 74vh; border-radius: 9px; }
  .article-cta { grid-template-columns: 1fr; padding: 22px; }
  .article-cta .btn { width: 100%; }
  .article-related { padding-top: 52px; }
}
@media (max-width: 420px) {
  .article-archive-hero,
  .article-detail-hero { min-height: 410px; }
  .article-meta span { min-height: 28px; padding: 4px 9px; font-size: 11px; }
  .article-card h2 { font-size: 19px; }
  .article-toolbar-top strong { font-size: 16px; }
}
@keyframes discountCharacterFloat {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50% { transform: scaleX(-1) translateY(-7px); }
}
@media (max-width: 640px) {
  .discount-widget {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 76px;
    height: 56px;
  }
  .discount-character {
    display: none;
  }
  .discount-dismiss {
    top: -10px;
    right: -6px;
    width: 24px;
    height: 24px;
  }
  .discount-bubble {
    inset: 0;
    min-width: 0;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    text-align: center;
  }
  .discount-bubble:after,
  .discount-bubble small {
    display: none;
  }
  .discount-bubble strong {
    font-size: 21px;
  }
  .discount-card {
    position: fixed;
    right: 10px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: calc(100% - 20px);
    max-width: 360px;
    padding: 20px;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .discount-widget {
    right: 18px;
    bottom: 118px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .discount-character {
    animation: none;
  }
  .discount-widget,
  .discount-card {
    transition: none;
  }
}

.process-section { padding-bottom: 48px; }
.faq-section { padding-top: 48px; }

.cooperation-section {
  color: #fff;
  background: #1b1b1d;
  scroll-margin-top: 150px;
}
.cooperation-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.cooperation-copy h2 {
  max-width: 620px;
  margin: 18px 0 20px;
  color: #fff;
}
.cooperation-copy .eyebrow {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
}
.cooperation-copy p { max-width: 620px; color: rgba(255, 255, 255, .7); }
.cooperation-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cooperation-contact {
  position: relative;
  width: min(100%, 430px);
}
.cooperation-contact summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid #ff4058;
  border-radius: 999px;
  background: #f32443;
  box-shadow: 0 14px 34px rgba(243, 36, 67, .24);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.cooperation-contact summary::-webkit-details-marker { display: none; }
.cooperation-contact summary:hover {
  transform: translateY(-2px);
  background: #ff4058;
  box-shadow: 0 18px 42px rgba(243, 36, 67, .34);
}
.cooperation-contact summary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 4px;
}
.cooperation-contact[open] summary { margin-bottom: 14px; }
.cooperation-contact-menu {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: #252528;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .25);
}
.cooperation-contact-person {
  display: grid;
  gap: 3px;
  padding: 2px 2px 8px;
}
.cooperation-contact-person strong { color: #fff; font-size: 17px; }
.cooperation-contact-person span { color: rgba(255, 255, 255, .72); font-size: 14px; }
.cooperation-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.cooperation-contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}
.cooperation-contact-links a:hover {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .15);
}
.cooperation-contact-status {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.45;
}
.cooperation-options { display: grid; gap: 12px; }
.cooperation-options article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
}
.cooperation-options strong { font-size: 19px; }
.cooperation-options span { color: rgba(255, 255, 255, .66); line-height: 1.55; }
@media (max-width: 820px) {
  .process-section { padding-bottom: 34px; }
  .faq-section { padding-top: 34px; }
  .cooperation-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .cooperation-contact,
  .cooperation-contact summary { width: 100%; }
  .cooperation-contact-links { grid-template-columns: 1fr; }
}

/* Branded page loading screen */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, #fff 0, rgba(255,255,255,.78) 28%, transparent 58%),
    #f3f0ea;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s ease;
  animation: page-loader-failsafe .4s ease 3s forwards;
}
.page-loader:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
}
.page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  animation: none;
  pointer-events: none;
}
.page-loader-inner {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 320px);
  color: #fff;
  text-align: center;
  transition: opacity .3s ease, transform .35s ease;
}
.page-loader.is-leaving .page-loader-inner { opacity: 0; transform: translateY(-6px); }
.page-loader-mark {
  display: grid;
  width: 250px;
  height: 132px;
  margin-bottom: 24px;
  place-items: center;
  filter: drop-shadow(0 14px 22px rgba(185,31,45,.14));
}
.page-loader-mark img {
  display: block;
  width: 240px;
  height: 126px;
  object-fit: contain;
}
.page-loader-copy { display: grid; }
.page-loader-copy span { color: #686d72; font-size: 12px; }
.page-loader-track {
  width: 180px;
  height: 2px;
  margin: 22px 0 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(28,28,30,.1);
}
.page-loader-track i {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b91f2d, #ff4058);
  animation: page-loader-progress 1s ease-in-out infinite;
}
.page-loader small { color: #777b80; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
@keyframes page-loader-progress {
  from { transform: translateX(-110%); }
  to { transform: translateX(350%); }
}
@keyframes page-loader-failsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* 404 */
.not-found-page {
  position: relative;
  min-height: 720px;
  padding: clamp(150px, 15vw, 210px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(243,36,67,.13), transparent 27%),
    linear-gradient(135deg, #f8f5ef, #ece8e1);
}
.not-found-page:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(rgba(28,28,30,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(28,28,30,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, #000);
}
.not-found-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.not-found-copy .eyebrow { margin-bottom: 22px; }
.not-found-copy h1 { max-width: 720px; margin-bottom: 20px; font-size: clamp(44px, 6vw, 78px); line-height: .98; }
.not-found-copy > p { max-width: 610px; color: #656a70; font-size: 18px; line-height: 1.65; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.not-found-visual {
  position: relative;
  display: grid;
  min-height: 410px;
  padding: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(28,28,30,.12);
  border-radius: 36px;
  background: #1c1c1e;
  box-shadow: 0 34px 90px rgba(28,28,30,.18);
}
.not-found-number {
  position: relative;
  color: #fff;
  font-size: clamp(110px, 17vw, 220px);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .8;
}
.not-found-number i { color: #f32443; font-style: normal; }
.not-found-visual small { position: absolute; bottom: 28px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; }
.not-found-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}
.not-found-links a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(28,28,30,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  color: #1c1c1e;
}
.not-found-links a:hover { border-color: rgba(185,31,45,.5); transform: translateY(-2px); }
.not-found-links strong { font-size: 16px; }
.not-found-links span { color: #73777d; font-size: 13px; }
@media (max-width: 900px) {
  .not-found-layout { grid-template-columns: 1fr; }
  .not-found-visual { min-height: 300px; }
}
@media (max-width: 620px) {
  .not-found-page { padding-top: 130px; }
  .not-found-actions .btn { width: 100%; }
  .not-found-links { grid-template-columns: 1fr; margin-top: 34px; }
  .not-found-links a { min-height: 0; }
}

/* Collaboration partners: keep dark-section contrast after global heading rules. */
.collaboration-partners-section .section-head h2,
.collaboration-partner-copy h3 {
  color: #fff;
}
.collaboration-partners-section .section-head > p {
  color: rgba(255,255,255,.72);
}
.collaboration-partners-section .section-head .eyebrow,
.collaboration-partner-copy .eyebrow {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
}
.collaboration-partners-section .section-head .eyebrow:before,
.collaboration-partner-copy .eyebrow:before {
  background: #22c55e;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-track i { animation: none; width: 100%; }
  .page-loader { transition-duration: .1s; }
}
