:root {
  color-scheme: light;
  --ink: #181a18;
  --ink-soft: #555a56;
  --paper: #f5f4ef;
  --white: #fffefa;
  --mist: #e9ece8;
  --forest: #183a31;
  --forest-deep: #102a23;
  --burgundy: #8c1f2b;
  --burgundy-deep: #6f1620;
  --brass: #b28a57;
  --line: rgba(24, 26, 24, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 50px rgba(22, 30, 27, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
summary {
  letter-spacing: 0;
}

button,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.skipLink {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 3px;
  background: var(--white);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skipLink:focus {
  transform: translateY(0);
}

.conceptBar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid rgba(140, 31, 43, 0.18);
  background: #f0ece8;
  color: #5f3b3f;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.conceptBar span {
  color: var(--ink-soft);
  font-weight: 600;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.96);
  backdrop-filter: blur(14px);
}

.headerInner {
  width: min(1420px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  min-width: 194px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.brand span {
  margin-top: 7px;
  color: var(--burgundy);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.desktopNav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktopNav a {
  position: relative;
  color: #454945;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.desktopNav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--burgundy);
  content: "";
  transition: transform 180ms ease;
}

.desktopNav a:hover::after {
  transform: scaleX(1);
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.headerPhone {
  display: flex;
  flex-direction: column;
  text-align: right;
  text-decoration: none;
}

.headerPhone small {
  color: #777b76;
  font-size: 10px;
}

.headerPhone strong {
  font-size: 16px;
  line-height: 1.2;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.buttonPrimary {
  background: var(--burgundy);
  color: #fff;
}

.buttonPrimary:hover {
  background: var(--burgundy-deep);
}

.buttonOutline {
  border-color: rgba(24, 26, 24, 0.52);
  background: rgba(255, 254, 250, 0.58);
  color: var(--ink);
}

.buttonOutline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.buttonLight {
  background: var(--white);
  color: var(--forest-deep);
}

.buttonLight:hover {
  background: #e5ebe7;
}

.headerButton {
  min-height: 44px;
  padding-inline: 18px;
}

.mobileMenu {
  display: none;
  position: relative;
}

.mobileMenu summary {
  min-width: 72px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  list-style: none;
}

.mobileMenu summary::-webkit-details-marker {
  display: none;
}

.mobileMenu nav {
  position: absolute;
  top: 50px;
  right: 0;
  width: min(290px, calc(100vw - 32px));
  display: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 7px;
}

.mobileMenu[open] nav {
  display: grid;
}

.mobileMenu nav a {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mobileMenu nav a:last-child {
  border-bottom: 0;
  color: var(--burgundy);
}

.hero {
  min-height: 520px;
  height: calc(100svh - 176px);
  max-height: 670px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f7f6f1;
}

.heroMedia {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.heroSlide {
  --hero-image: none;

  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #f7f6f1;
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 241, 0.99) 0%,
      rgba(247, 246, 241, 0.94) 28%,
      rgba(247, 246, 241, 0.48) 49%,
      rgba(247, 246, 241, 0.02) 69%
    ),
    var(--hero-image);
  background-position:
    center,
    right center;
  background-repeat: no-repeat;
  background-size:
    cover,
    auto 100%;
  transition: opacity 520ms ease;
}

.heroSlideHouse {
  --hero-image: url("/preview/mir-dverey-home/hero-seville-house-v1.webp");
}

.heroSlidePrevious {
  --hero-image: url("/preview/mir-dverey-home/hero-v2.webp");

  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
}

.heroSlideShowroom {
  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
}

.heroSlideShowroom01 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-01.webp");
}

.heroSlideShowroom02 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-02.webp");
}

.heroSlideShowroom03 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-03.webp");
}

.heroSlideShowroom04 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-04.webp");
}

.heroSlideShowroom05 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-05.webp");
}

.heroSlideShowroom06 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-06.webp");
}

.heroSlideShowroom07 {
  --hero-image: url("/preview/mir-dverey-home/showroom-gallery-07.webp");
}

.heroSlide.isActive {
  opacity: 1;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 1px;
  background: rgba(24, 26, 24, 0.2);
  content: "";
}

.heroInner {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.heroVisualMeta {
  position: absolute;
  right: max(24px, calc((100% - 1420px) / 2));
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.heroVisualNote {
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(52, 42, 37, 0.16);
  border-radius: 3px;
  background: rgba(255, 254, 250, 0.8);
  color: #625d57;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.heroCarouselControls {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px;
  border: 1px solid rgba(52, 42, 37, 0.16);
  border-radius: 3px;
  background: rgba(255, 254, 250, 0.8);
  backdrop-filter: blur(6px);
}

.heroCarouselButton {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #4c4945;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}

.heroCarouselButton:hover {
  background: rgba(140, 31, 43, 0.1);
  color: var(--burgundy);
}

.heroCarouselDots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
}

.heroCarouselStatus {
  min-width: 52px;
  display: none;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #4c4945;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: 0;
}

.heroCarouselDot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  padding: 0;
  border: 1px solid rgba(76, 73, 69, 0.62);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.heroCarouselDot.isActive {
  border-color: var(--burgundy);
  background: var(--burgundy);
}

.heroContent {
  width: min(600px, 48%);
}

.eyebrow,
.sectionKicker {
  margin: 0 0 16px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: 78px;
  line-height: 0.96;
}

h2 {
  font-size: 52px;
  line-height: 1.02;
}

.heroLead {
  max-width: 550px;
  margin: 24px 0 0;
  color: #4b514d;
  font-size: 19px;
  line-height: 1.58;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.heroFacts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #555b56;
  font-size: 12px;
  font-weight: 800;
}

.heroFacts span {
  position: relative;
  padding-left: 16px;
}

.heroFacts span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  content: "";
}

.intentBand {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intentInner {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr repeat(4, 1fr);
}

.intentIntro,
.intentLink {
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.intentIntro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intentIntro small {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.intentIntro strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.12;
}

.intentLink {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.intentLink:last-child {
  border-right: 0;
}

.intentLink span {
  color: #858985;
  font-size: 10px;
  font-weight: 900;
}

.intentLink strong {
  max-width: 180px;
  font-size: 14px;
  line-height: 1.35;
}

.intentLink:hover {
  background: var(--forest);
  color: #fff;
}

.intentLink:hover span {
  color: #b9c8c2;
}

.section {
  padding: 112px 0;
}

.sectionInner {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
}

.sectionHead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.sectionHeadCopy {
  max-width: 530px;
  justify-self: end;
  margin: 0;
  color: #626762;
  font-size: 16px;
  line-height: 1.75;
}

.categoryStage {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.categoryPane {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 50px;
  text-decoration: none;
}

.categoryPane + .categoryPane {
  border-left: 1px solid var(--line);
}

.categoryEntrance {
  background: #e8e8e4;
}

.categoryInterior {
  background: #eee8e1;
}

.categoryCopy {
  max-width: 370px;
  position: relative;
  z-index: 2;
}

.categoryCopy small {
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.categoryCopy h3 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.05;
}

.categoryCopy p {
  max-width: 330px;
  margin: 21px 0 0;
  color: #5d625e;
  font-size: 15px;
}

.categoryCopy strong {
  display: inline-block;
  margin-top: 30px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.categoryImage {
  align-self: stretch;
  display: grid;
  place-items: end center;
  position: relative;
  z-index: 1;
}

.categoryImage img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 24px rgba(23, 26, 23, 0.12));
  transition: transform 300ms ease;
}

.categoryPane:hover .categoryImage img {
  transform: translateY(-8px);
}

.selectionStudio {
  background: var(--forest);
  color: #fff;
  padding: 100px 0;
}

.selectorLayout {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(600px, 1.24fr);
  gap: 90px;
  align-items: start;
}

.selectorIntro {
  position: sticky;
  top: 120px;
}

.selectorIntro .sectionKicker {
  color: #d8b487;
}

.selectorIntro h2 {
  max-width: 580px;
  color: #fff;
}

.selectorIntro > p:not(.sectionKicker) {
  max-width: 490px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.selectorTool {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(9, 28, 23, 0.4);
  padding: 38px;
}

.selectorGroup + .selectorGroup {
  margin-top: 30px;
}

.selectorGroupTitle {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.selectorGroupTitle span {
  color: #d8b487;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.selectorOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selectorOption {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  padding: 9px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.selectorOption:hover,
.selectorOption[aria-pressed="true"] {
  border-color: #fff;
  background: #fff;
  color: var(--forest-deep);
}

.selectorResult {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 28px;
}

.selectorResult small {
  display: block;
  color: #d8b487;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.selectorResult p {
  max-width: 520px;
  margin: 7px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

.catalogSection {
  background: var(--mist);
}

.catalogTop {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 34px;
}

.catalogStatus {
  justify-self: end;
  border-left: 2px solid var(--burgundy);
  padding-left: 18px;
}

.catalogStatus strong,
.catalogStatus span {
  display: block;
}

.catalogStatus strong {
  font-size: 14px;
}

.catalogStatus span {
  margin-top: 5px;
  color: #686d68;
  font-size: 11px;
}

.catalogToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.catalogToolbar > span {
  color: #6c716d;
  font-size: 12px;
}

.filterTabs {
  display: inline-flex;
  border: 1px solid rgba(24, 26, 24, 0.2);
  border-radius: 4px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.44);
}

.filterTab {
  min-height: 38px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
  color: #606560;
  font-size: 11px;
  font-weight: 900;
}

.filterTab[aria-selected="true"] {
  background: var(--forest);
  color: #fff;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.productCard {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 26, 24, 0.13);
  border-radius: 5px;
  background: var(--white);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.productCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.productCardLink {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.productVisual {
  aspect-ratio: 4 / 4.15;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 26, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 26, 24, 0.045) 1px, transparent 1px),
    #f3f1ec;
  background-size: 38px 38px;
}

.productVisual img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 280ms ease;
}

.productCard:hover .productVisual img {
  transform: scale(1.025);
}

.productKind {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 3px;
  background: rgba(255, 254, 250, 0.94);
  padding: 7px 9px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.productBody {
  min-height: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.productMeta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #777c77;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.productBody h3 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.productSize {
  margin: 11px 0 0;
  color: #717672;
  font-size: 11px;
}

.productFoot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 25px;
}

.productFoot strong {
  font-size: 17px;
}

.productFoot span {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 900;
}

.catalogFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.catalogFoot p {
  max-width: 700px;
  margin: 0;
  color: #686d69;
  font-size: 12px;
}

.principles {
  background: var(--white);
}

.principleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 280px;
  padding: 36px 38px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 26px;
}

.principle h3 {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.principle p {
  margin: 18px 0 0;
  color: #676c67;
  font-size: 14px;
}

.processBand {
  background: var(--burgundy);
  color: #fff;
}

.processInner {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.processLead,
.processStep {
  min-height: 230px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.processLead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.processLead small {
  color: #e6c6bb;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.processLead strong {
  max-width: 310px;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.1;
}

.processStep {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.processStep span {
  color: #e6c6bb;
  font-family: var(--serif);
  font-size: 23px;
}

.processStep strong {
  font-size: 14px;
}

.processStep p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.showroomSection {
  background: #ece9e4;
}

.showroomLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.72fr);
  align-items: stretch;
  min-height: 650px;
}

.showroomPhoto {
  min-height: 650px;
  background:
    linear-gradient(180deg, transparent 70%, rgba(15, 22, 19, 0.18)),
    url("/preview/mir-dverey-home/showroom-detail.webp") center center / cover
      no-repeat;
}

.showroomContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.showroomContent > p:not(.sectionKicker) {
  max-width: 540px;
  margin: 26px 0 0;
  color: #626762;
}

.showroomFacts {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.showroomFact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.showroomFact dt {
  color: #777c77;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.showroomFact dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.showroomActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.faqSection {
  background: var(--white);
}

.faqLayout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.faqIntro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faqIntro p:not(.sectionKicker) {
  max-width: 420px;
  margin: 24px 0 0;
  color: #676c67;
}

.faqList {
  border-top: 1px solid var(--line);
}

.faqList details {
  border-bottom: 1px solid var(--line);
}

.faqList summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  list-style: none;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--burgundy);
  content: "+";
  font-family: var(--sans);
  font-size: 18px;
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList details p {
  max-width: 720px;
  margin: -6px 52px 0 0;
  padding: 0 0 28px;
  color: #626762;
}

.contactSection {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}

.contactLayout {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.contactSection .sectionKicker {
  color: #d8b487;
}

.contactSection h2 {
  max-width: 780px;
  color: #fff;
}

.contactCopy {
  max-width: 520px;
  justify-self: end;
}

.contactCopy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
}

.contactLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.siteFooter {
  background: #111311;
  color: rgba(255, 255, 255, 0.64);
  padding: 34px 0 96px;
}

.footerInner {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 50px;
  font-size: 11px;
}

.footerBrand strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
}

.footerBrand span {
  display: block;
  margin-top: 7px;
}

.footerLinks {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footerLinks a {
  text-decoration: none;
}

.footerLegal {
  text-align: right;
}

.mobileDock {
  display: none;
}

@media (max-width: 1180px) {
  .headerInner,
  .heroInner,
  .sectionInner,
  .selectorLayout,
  .contactLayout,
  .footerInner {
    width: min(100% - 40px, 1120px);
  }

  .desktopNav {
    gap: 18px;
  }

  .headerPhone {
    display: none;
  }

  .heroContent {
    width: min(570px, 52%);
  }

  .intentInner {
    grid-template-columns: repeat(4, 1fr);
  }

  .intentIntro {
    grid-column: 1 / -1;
    min-height: 84px;
    border-bottom: 1px solid var(--line);
  }

  .categoryStage {
    grid-template-columns: 1fr;
  }

  .categoryPane {
    min-height: 520px;
  }

  .categoryPane + .categoryPane {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .selectorLayout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 50px;
  }

  .productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .processInner {
    grid-template-columns: repeat(4, 1fr);
  }

  .processLead {
    grid-column: 1 / -1;
    min-height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .showroomContent {
    padding: 50px;
  }
}

@media (max-width: 900px) {
  .desktopNav,
  .headerActions {
    display: none;
  }

  .headerInner {
    grid-template-columns: 1fr auto;
  }

  .mobileMenu {
    display: block;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 44px;
  }

  .heroContent {
    width: min(520px, 57%);
  }

  .sectionHead,
  .catalogTop {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sectionHeadCopy,
  .catalogStatus {
    justify-self: start;
  }

  .selectorLayout,
  .faqLayout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .selectorIntro,
  .faqIntro {
    position: static;
  }

  .principleGrid {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .showroomLayout {
    grid-template-columns: 1fr;
  }

  .showroomPhoto {
    min-height: 540px;
  }

  .contactLayout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contactCopy {
    justify-self: start;
  }

  .footerInner {
    grid-template-columns: 1fr 1fr;
  }

  .footerLegal {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
  }

  .conceptBar {
    min-height: 30px;
    padding: 5px 12px;
    font-size: 9px;
  }

  .conceptBar span {
    display: none;
  }

  .siteHeader {
    position: relative;
    backdrop-filter: none;
  }

  .headerInner,
  .heroInner,
  .sectionInner,
  .selectorLayout,
  .contactLayout,
  .footerInner {
    width: calc(100% - 32px);
  }

  .headerInner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand span {
    font-size: 8px;
  }

  .hero {
    min-height: 560px;
    height: auto;
    max-height: none;
    align-items: end;
  }

  .heroSlide {
    background-image:
      linear-gradient(
        180deg,
        rgba(12, 25, 21, 0.04) 0%,
        rgba(12, 25, 21, 0.2) 34%,
        rgba(12, 25, 21, 0.88) 67%,
        rgba(12, 25, 21, 0.98) 100%
      ),
      var(--hero-image);
    background-position: center;
    background-size: cover;
  }

  .heroSlideHouse {
    --hero-image: url("/preview/mir-dverey-home/hero-seville-house-v1-mobile.webp");
  }

  .heroSlidePrevious {
    --hero-image: url("/preview/mir-dverey-home/hero-v2-mobile.webp");
  }

  .heroSlideShowroom01 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-01-mobile.webp");
  }

  .heroSlideShowroom02 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-02-mobile.webp");
  }

  .heroSlideShowroom03 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-03-mobile.webp");
  }

  .heroSlideShowroom04 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-04-mobile.webp");
  }

  .heroSlideShowroom05 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-05-mobile.webp");
  }

  .heroSlideShowroom06 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-06-mobile.webp");
  }

  .heroSlideShowroom07 {
    --hero-image: url("/preview/mir-dverey-home/showroom-gallery-07-mobile.webp");
  }

  .heroVisualMeta {
    top: 14px;
    right: 14px;
    bottom: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .heroVisualNote {
    max-width: 190px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(12, 25, 21, 0.72);
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
  }

  .heroCarouselControls {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(12, 25, 21, 0.72);
  }

  .heroCarouselDots {
    display: none;
  }

  .heroCarouselStatus {
    display: flex;
    color: rgba(255, 255, 255, 0.88);
  }

  .heroCarouselButton {
    color: rgba(255, 255, 255, 0.9);
  }

  .heroCarouselButton:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .heroCarouselDot {
    border-color: rgba(255, 255, 255, 0.72);
  }

  .heroCarouselDot.isActive {
    border-color: #d8b487;
    background: #d8b487;
  }

  .heroInner {
    padding: 74px 0 36px;
  }

  .heroContent {
    width: 100%;
  }

  .eyebrow {
    color: #e5c49b;
  }

  h1 {
    color: #fff;
    font-size: 54px;
  }

  h2 {
    font-size: 39px;
  }

  .heroLead {
    max-width: 500px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 16px;
    line-height: 1.48;
  }

  .heroActions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero .buttonOutline {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .heroFacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.72);
  }

  .heroFacts span::before {
    background: #d8b487;
  }

  .intentInner {
    grid-template-columns: repeat(2, 1fr);
  }

  .intentIntro {
    min-height: 90px;
    padding: 18px 16px;
  }

  .intentLink {
    min-height: 104px;
    padding: 17px 16px;
    border-bottom: 1px solid var(--line);
  }

  .intentLink:nth-child(3) {
    border-right: 0;
  }

  .section {
    padding: 76px 0;
  }

  .sectionHead {
    margin-bottom: 36px;
  }

  .sectionHeadCopy {
    font-size: 14px;
  }

  .categoryPane {
    min-height: 580px;
    grid-template-columns: 1fr;
    align-content: space-between;
    padding: 30px 24px 0;
  }

  .categoryCopy h3 {
    font-size: 34px;
  }

  .categoryImage {
    min-height: 310px;
  }

  .categoryImage img {
    max-height: 330px;
  }

  .selectionStudio {
    padding: 76px 0;
  }

  .selectorIntro > p:not(.sectionKicker) {
    font-size: 15px;
  }

  .selectorTool {
    padding: 24px 18px;
  }

  .selectorOptions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selectorOption {
    width: 100%;
  }

  .selectorResult {
    grid-template-columns: 1fr;
  }

  .selectorResult p {
    font-size: 20px;
  }

  .catalogToolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filterTabs {
    width: 100%;
  }

  .filterTab {
    flex: 1;
    padding-inline: 8px;
  }

  .productGrid {
    width: calc(100% + 16px);
    display: grid;
    grid-auto-columns: min(78vw, 310px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 14px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .productCard {
    scroll-snap-align: start;
  }

  .productVisual {
    aspect-ratio: 4 / 4.3;
  }

  .productBody {
    min-height: 210px;
    padding: 20px;
  }

  .productBody h3 {
    font-size: 22px;
  }

  .catalogFoot {
    align-items: stretch;
    flex-direction: column;
  }

  .catalogFoot .button {
    width: 100%;
  }

  .principle {
    padding: 30px 24px;
  }

  .processInner {
    grid-template-columns: repeat(2, 1fr);
  }

  .processLead {
    min-height: 136px;
  }

  .processStep {
    min-height: 190px;
    padding: 26px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .processStep:nth-child(3),
  .processStep:nth-child(5) {
    border-right: 0;
  }

  .showroomPhoto {
    min-height: 460px;
  }

  .showroomContent {
    padding: 60px 24px 70px;
  }

  .showroomFact {
    grid-template-columns: 90px 1fr;
  }

  .faqList summary {
    min-height: 78px;
    font-size: 19px;
  }

  .faqList details p {
    margin-right: 0;
  }

  .contactSection {
    padding: 76px 0;
  }

  .contactLinks {
    display: grid;
  }

  .footerInner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footerLegal {
    grid-column: auto;
  }

  .mobileDock {
    height: 66px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--forest);
    color: #fff;
  }

  .mobileDock a {
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobileDock a:last-child {
    background: var(--burgundy);
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 49px;
  }

  h2 {
    font-size: 36px;
  }

  .intentInner {
    grid-template-columns: 1fr;
  }

  .intentLink {
    min-height: 88px;
    border-right: 0;
  }

  .categoryPane {
    min-height: 550px;
  }

  .categoryCopy,
  .categoryImage {
    width: 100%;
    min-width: 0;
  }

  .categoryCopy h3 {
    font-size: 31px;
  }

  .selectorOptions {
    grid-template-columns: 1fr;
  }

  .filterTab {
    font-size: 10px;
  }

  .processInner {
    grid-template-columns: 1fr;
  }

  .processStep {
    min-height: 150px;
    border-right: 0;
  }

  .showroomPhoto {
    min-height: 390px;
  }
}

@media (max-width: 360px), (max-height: 720px) and (max-width: 760px) {
  .hero {
    min-height: 425px;
  }

  .heroInner {
    padding: 30px 0 14px;
  }

  .heroVisualMeta {
    top: 10px;
  }

  .heroVisualNote {
    max-width: 275px;
    padding: 6px 8px;
    font-size: 8px;
  }

  .heroContent .eyebrow {
    display: none;
  }

  .heroFacts {
    display: none;
  }

  h1 {
    font-size: 45px;
  }

  .heroLead {
    font-size: 15px;
  }

  .button {
    min-height: 44px;
  }
}

@media (max-width: 760px) and (max-height: 620px) {
  body {
    padding-bottom: 0;
  }

  .mobileDock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
