/*
Theme Name: Art Design
Theme URI: http://art-design.local
Author: Codex
Description: Tema custom standalone per Art Design.
Version: 1.2.0
Text Domain: art-design
*/

:root {
  color-scheme: dark;
  --page-bg: #090909;
  --panel-bg: rgba(8, 8, 8, 0.96);
  --text: #ffffff;
  --muted: #d8d8d8;
  --line: rgba(255, 255, 255, 0.18);
  --accent: #f3c48b;
  --accent-hover: #be2618;
  --content-width: 1300px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 320px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 220px),
    var(--page-bg);
}

h3 {
  margin: 0 0 0.6em;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 35px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
}

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

a {
  color: inherit;
}

strong,
b {
  font-weight: 700;
  text-shadow: none;
}

h1.showroom-page__title,
h1.showroom-brand__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.homepage {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 20;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.is-header-scrolled::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(0, 0, 0, 0.98);
  z-index: 15;
  pointer-events: none;
  transition: background-color 220ms ease, opacity 220ms ease;
}

.site-header,
.site-menu-toggle {
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-branding {
  pointer-events: auto;
  line-height: 0;
  display: flex;
  align-items: center;
}

.site-branding .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-branding .custom-logo {
  width: 200px;
  height: auto;
  max-width: 200px;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.site-branding__text {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-menu-toggle {
  position: relative;
  top: auto;
  right: auto;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  align-self: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  margin-top: 2px;
  line-height: 0;
  font-family: 'Montserrat', sans-serif;
}

.site-menu-toggle__icon {
  width: 30px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.site-menu-toggle__icon span,
.site-overlay-menu__close span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.site-menu-toggle__icon span:nth-child(2) {
  width: 72%;
  margin-left: auto;
}

.site-overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 520ms;
}

.site-overlay-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu.is-open .site-overlay-menu__backdrop {
  opacity: 1;
}

.site-overlay-menu__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vh, 160px) clamp(24px, 6vw, 80px);
  opacity: 0;
  transform: translateY(14px) scale(0.988);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.site-overlay-menu.is-open .site-overlay-menu__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-overlay-menu__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.site-overlay-menu__close span {
  position: absolute;
  top: 16px;
  left: 0;
}

.site-overlay-menu__close span:first-child {
  transform: rotate(45deg);
}

.site-overlay-menu__close span:last-child {
  transform: rotate(-45deg);
}

.site-overlay-menu__nav {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: flex;
  justify-content: center;
}

.site-overlay-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.site-overlay-menu__list > li {
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.site-overlay-menu.is-open .site-overlay-menu__list > li {
  opacity: 1;
  transform: translateX(0);
}

.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(1) { transition-delay: 100ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(2) { transition-delay: 190ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(3) { transition-delay: 280ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(4) { transition-delay: 370ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(5) { transition-delay: 460ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(6) { transition-delay: 550ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(7) { transition-delay: 640ms; }
.site-overlay-menu.is-open .site-overlay-menu__list > li:nth-child(8) { transition-delay: 730ms; }

.site-overlay-menu__list a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 44px);
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 220ms ease, transform 220ms ease;
}

.site-overlay-menu__list > li.menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  margin-left: 14px;
  font-size: 0.72em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.site-overlay-menu__list .sub-menu > li.menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  margin-left: 12px;
  font-size: 0.72em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.site-overlay-menu__list .sub-menu {
  display: grid;
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  gap: 14px;
  justify-items: center;
  text-align: center;
  border-left: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    max-height 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu__list > li:hover > .sub-menu,
.site-overlay-menu__list > li:focus-within > .sub-menu {
  max-height: 800px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-overlay-menu__list .sub-menu > li {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 520ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu.is-open .site-overlay-menu__list .sub-menu > li {
  opacity: 1;
  transform: translateX(0);
}

.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(1),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(1) { transition-delay: 100ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(2),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(2) { transition-delay: 180ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(3),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(3) { transition-delay: 260ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(4),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(4) { transition-delay: 340ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(5),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(5) { transition-delay: 420ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(6),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(6) { transition-delay: 500ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(7),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(7) { transition-delay: 580ms; }
.site-overlay-menu__list > li:hover > .sub-menu > li:nth-child(8),
.site-overlay-menu__list > li:focus-within > .sub-menu > li:nth-child(8) { transition-delay: 660ms; }

.site-overlay-menu__list .sub-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: none;
  transition: color 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu__list .sub-menu a::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: rotate(-32deg) translateX(-8px);
  transform-origin: center;
  transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu__list .sub-menu .sub-menu {
  display: grid;
  margin-top: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    max-height 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-overlay-menu__list .sub-menu > li:hover > .sub-menu,
.site-overlay-menu__list .sub-menu > li:focus-within > .sub-menu {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-overlay-menu__list .sub-menu .sub-menu a {
  font-size: 18px;
  opacity: 0.82;
}

.site-overlay-menu__list a:hover,
.site-overlay-menu__list a:focus-visible {
  color: var(--accent-hover);
  transform: translateX(5px);
}

.site-overlay-menu__list .sub-menu a:hover,
.site-overlay-menu__list .sub-menu a:focus-visible {
  color: var(--accent-hover);
  transform: translateX(7px);
}

.site-overlay-menu__list .sub-menu a:hover::before,
.site-overlay-menu__list .sub-menu a:focus-visible::before {
  opacity: 1;
  transform: rotate(-32deg) translateX(0);
}

.site-overlay-menu__list > li.is-submenu-open > .sub-menu,
.site-overlay-menu__list .sub-menu > li.is-submenu-open > .sub-menu {
  max-height: 800px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-overlay-menu__list > li.is-submenu-open > a::after,
.site-overlay-menu__list .sub-menu > li.is-submenu-open > a::after {
  color: #fff;
}

.site-overlay-menu__list > li.is-submenu-open.menu-item-has-children > a::after,
.site-overlay-menu__list .sub-menu > li.is-submenu-open.menu-item-has-children > a::after {
  content: "-";
}

@media (max-width: 768px) {
  .site-overlay-menu__nav {
    width: min(100%, 100%);
  }

  .site-overlay-menu__list {
    gap: 12px;
  }

  .site-overlay-menu__list > li {
    position: relative;
  }

  .site-overlay-menu__list > li > a {
    font-size: 22px;
    line-height: 1.08;
  }

  .site-overlay-menu__list .sub-menu,
  .site-overlay-menu__list .sub-menu .sub-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    min-width: 0;
    margin: 12px 0 0;
    padding: 0;
    transform: none !important;
    z-index: auto;
    background: transparent;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
  }

  .site-overlay-menu__list li.is-submenu-open > .sub-menu,
  .site-overlay-menu__list .sub-menu li.is-submenu-open > .sub-menu {
    display: flex;
  }

  .site-overlay-menu__list .sub-menu > li,
  .site-overlay-menu__list .sub-menu .sub-menu > li {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .site-overlay-menu__list .sub-menu > li > a,
  .site-overlay-menu__list .sub-menu .sub-menu > li > a {
    margin-bottom: 0;
  }

  .site-overlay-menu__list .sub-menu a,
  .site-overlay-menu__list .sub-menu .sub-menu a {
    font-size: 18px;
    line-height: 1.2;
  }

  .site-overlay-menu__list > li.menu-item-has-children > a::after,
  .site-overlay-menu__list .sub-menu > li.menu-item-has-children > a::after {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    line-height: 18px;
    transform: translateY(-1px);
  }
}

body.is-menu-open {
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--page-bg);
}

.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100vh;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-carousel__slide {
  position: relative;
  flex: 0 0 100vw;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  background: #090909;
}

.hero-carousel__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.hero-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg, radial-gradient(circle at 20% 20%, #444 0, #1a1a1a 40%, #090909 100%));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.12);
  filter: saturate(0.96) contrast(1.02) brightness(0.9);
  opacity: 0.98;
  transition:
    transform 2200ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 2200ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1800ms ease;
}

.hero-carousel__slide.is-active::after {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1) contrast(1.03) brightness(0.92);
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel__panel {
  position: relative;
  z-index: 1;
  width: min(500px, calc(100vw - 32px));
  min-height: calc(100vh - 176px);
  margin: 88px 0 88px clamp(32px, calc((100vw - var(--content-width)) / 2), 320px);
  padding: clamp(28px, 4vw, 46px);
  background: var(--panel-bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateX(72px) translateY(10px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) 640ms,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 640ms;
}

.hero-carousel__slide.is-active .hero-carousel__panel {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.hero-carousel__title {
  margin: 0;
  padding-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: -0.05em;
  font-size: 50px;
  line-height: 60px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 980ms;
}

.hero-carousel__title::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-carousel__line {
  display: none;
}

.hero-carousel__copy {
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1140ms;
}

.hero-carousel__copy p {
  margin: 0 0 1em;
}

.hero-carousel__copy p:last-child {
  margin-bottom: 0;
}

.hero-carousel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1320ms;
}

.hero-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-carousel__button:hover,
.hero-carousel__button:focus-visible {
  background: #fff;
  color: #111;
  border-color: #fff;
  transform: translateY(-1px);
}

.art-design-breadcrumbs {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-design-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}

.art-design-breadcrumbs a:hover,
.art-design-breadcrumbs a:focus-visible {
  color: #fff;
}

.art-design-breadcrumbs .breadcrumb_last {
  color: #fff;
}

.art-design-breadcrumbs .separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 640px) {
  .hero-carousel__dots,
  .home-showroom__numbers {
    gap: 20px;
    padding: 0 10px 10px;
    bottom: 16px;
  }

  .hero-carousel__dots::before,
  .home-showroom__numbers::before {
    left: -10px;
    right: -10px;
    bottom: 1px;
  }

  .hero-carousel__dot,
  .home-showroom__dot {
    font-size: 15px;
    min-width: 16px;
    align-items: center;
  }

  .hero-carousel__dot-line,
  .home-showroom__dot-line {
    width: 32px;
    bottom: -9px;
  }

  .hero-carousel__dot:not(:last-child)::after,
  .home-showroom__dot:not(:last-child)::after {
    width: 14px;
    right: -20px;
    bottom: -9px;
  }
}

@media (max-width: 640px) {
  .art-design-breadcrumbs {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1500px) and (min-width: 1025px) {
  .hero-carousel__panel {
    width: 70%;
    max-width: 70%;
  }

  .hero-carousel__title {
    font-size: 36px;
    line-height: 44px;
    padding-bottom: 16px;
  }

  .hero-carousel__title::after {
    margin-top: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-carousel__panel {
    width: min(440px, calc(100vw - 36px));
    min-height: auto;
    margin: auto;
    padding: 22px 24px;
    gap: 18px;
    align-self: center;
  }

  .hero-carousel__title {
    font-size: 40px;
    line-height: 48px;
    padding-bottom: 16px;
  }

  .hero-carousel__title::after {
    margin-top: 14px;
  }

  .hero-carousel__copy {
    font-size: 17px;
    line-height: 22px;
  }

  .hero-carousel__actions {
    gap: 12px;
  }

  .hero-carousel__button {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 11px;
    line-height: 22px;
  }

  .hero-carousel__image {
    width: min(190px, 100%);
  }

  .hero-carousel__slide {
    justify-content: center;
  }

  .home-showroom {
    padding: 40px 0 84px;
  }

  .home-showroom__inner {
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
  }

  .home-showroom__content {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    margin: 0;
    width: 100%;
    align-self: stretch;
  }

  .home-showroom__panel {
    width: 100%;
    padding: 32px 28px;
  }

  .home-showroom__media {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    margin: 0;
    width: 100%;
    align-self: stretch;
  }

  .home-showroom__stage,
  .home-showroom__image,
  .home-showroom__slide img,
  .home-showroom__image img {
    min-height: 360px;
  }

  .home-showroom__numbers {
    width: max-content;
    max-width: 100%;
    margin: 16px auto 0;
    padding: 0 14px 12px;
    gap: 28px;
  }

  .home-showroom__numbers::before {
    left: -12px;
    right: -12px;
  }

  .home-philosophy,
  .home-relation {
    padding: 54px 0 96px;
  }

  .showroom-brand {
    padding: 54px 0 96px;
  }

  .showroom-history {
    padding: 54px 0 96px;
  }

  .home-philosophy__inner,
  .home-relation__inner {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0;
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .home-philosophy__image,
  .home-relation__image {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 300px;
    order: 1;
  }

  .home-philosophy__image img,
  .home-relation__image img {
    display: block;
    width: 100%;
    min-height: 300px;
  }

  .home-philosophy__content,
  .home-relation__content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    order: 2;
  }

  .home-philosophy__panel,
  .home-relation__panel {
    display: block;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    padding: 30px 28px;
  }

  .showroom-brand__inner {
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-brand__content,
  .showroom-brand.is-reversed .showroom-brand__content {
    width: 100%;
    margin: 0;
  }

  .showroom-brand__media,
  .showroom-brand.is-reversed .showroom-brand__media {
    width: 100%;
  }

  .showroom-brand__panel {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 30px 28px;
  }

  .showroom-history__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    grid-template-columns: 1fr !important;
    gap: 40px;
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-history__content,
  .showroom-history.is-reversed .showroom-history__content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .showroom-history__content {
    order: 2;
  }

  .showroom-history__content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .showroom-history__media,
  .showroom-history.is-reversed .showroom-history__media {
    display: block !important;
    width: 100% !important;
    min-height: 300px;
    order: 1;
    margin-bottom: 40px;
  }

  .showroom-history__media img {
    min-height: 300px;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .hero-carousel__panel {
    width: min(440px, calc(100vw - 36px));
    min-height: auto;
    margin: auto 0 auto 150px;
    padding: 22px 24px;
    gap: 18px;
    align-self: flex-start;
  }

  .hero-carousel__slide {
    justify-content: flex-start;
  }
}

.hero-carousel__image {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transform: translateX(34px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1500ms;
}

.hero-carousel__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: transform 600ms ease;
}

.hero-carousel__slide.is-active .hero-carousel__image img {
  transform: scale(1.01);
}

.hero-carousel__slide.is-active .hero-carousel__title,
.hero-carousel__slide.is-active .hero-carousel__copy,
.hero-carousel__slide.is-active .hero-carousel__actions,
.hero-carousel__slide.is-active .hero-carousel__image {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__track,
  .hero-carousel__slide::after,
  .hero-carousel__panel,
  .hero-carousel__title,
  .hero-carousel__copy,
  .hero-carousel__actions,
  .hero-carousel__image,
  .hero-carousel__image img,
  .hero-carousel__button {
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .showroom-page--progettazione .showroom-history {
    padding: 54px 0 96px;
  }

  .showroom-page--progettazione .showroom-history__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    grid-template-columns: 1fr !important;
    gap: 0;
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-page--progettazione .showroom-history__media,
  .showroom-page--progettazione .showroom-history.is-reversed .showroom-history__media {
    display: block !important;
    width: 100% !important;
    min-height: 300px;
    order: 1;
    margin-bottom: 40px;
  }

  .showroom-page--progettazione .showroom-history__media img {
    min-height: 300px;
  }

  .showroom-page--progettazione .showroom-history__content,
  .showroom-page--progettazione .showroom-history.is-reversed .showroom-history__content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    order: 2;
  }
}

@media (max-width: 768px) {
  .showroom-page--progettazione .showroom-history {
    padding: 42px 0 78px;
  }

  .showroom-page--progettazione .showroom-history__inner {
    width: min(600px, calc(100vw - 32px));
  }

  .showroom-page--progettazione .showroom-history__media,
  .showroom-page--progettazione .showroom-history.is-reversed .showroom-history__media {
    min-height: 300px;
  }

  .showroom-page--progettazione .showroom-history__media img {
    min-height: 300px;
  }
}

.home-philosophy,
.home-relation {
  position: relative;
  padding: clamp(42px, 6vw, 96px) 0 clamp(72px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.34) 100%),
    #050505;
}

.home-philosophy__inner,
.home-relation__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.home-philosophy__content,
.home-relation__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(42px, 5vw, 86px);
  margin-left: -2.25vw;
}

.home-philosophy__panel,
.home-relation__panel {
  width: min(100%, 600px);
  padding: clamp(36px, 4.5vw, 64px);
  background: #1B1B1B;
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.home-philosophy__title,
.home-relation__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-philosophy__line,
.home-relation__line {
  display: block;
  width: 52px;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255, 255, 255, 0.28);
}

.home-philosophy__text,
.home-relation__text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.home-philosophy__text p,
.home-relation__text p {
  margin: 0 0 1em;
}

.home-philosophy__text p:last-child,
.home-relation__text p:last-child {
  margin-bottom: 0;
}

.art-design-inline-link-button {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.art-design-inline-link-button:hover,
.art-design-inline-link-button:focus-visible {
  color: var(--accent-hover);
  border-color: transparent;
  transform: translateY(-1px);
}

.home-philosophy__image,
.home-relation__image {
  min-height: 520px;
  overflow: hidden;
  background: #111;
  align-self: start;
}

.home-philosophy__image img,
.home-relation__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.home-showroom {
  position: relative;
  padding: clamp(42px, 6vw, 96px) 0 clamp(72px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.34) 100%),
    #050505;
}

.home-showroom__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.home-showroom__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-self: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: -20px;
  grid-column: 1;
  grid-row: 1;
}

.home-showroom__panel {
  width: 100%;
  padding: clamp(36px, 4.5vw, 64px);
  background: #1B1B1B;
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.home-showroom__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-showroom__line {
  display: block;
  width: 52px;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255, 255, 255, 0.28);
}

.home-showroom__text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.home-showroom__text p {
  margin: 0 0 1em;
}

.home-showroom__text p:last-child {
  margin-bottom: 0;
}

.home-showroom__button {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-showroom__button:hover,
.home-showroom__button:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.home-showroom__image,
.home-showroom__media {
  min-height: 520px;
  overflow: hidden;
  background: #111;
  align-self: stretch;
}

.home-showroom__image img,
.home-showroom__slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.home-showroom__media {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  width: 100%;
}

.home-showroom__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111;
}

.home-showroom__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 650ms ease;
  will-change: transform;
}

.home-showroom__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.home-showroom__slide img {
  display: block;
}

.home-showroom__numbers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin: 16px auto 0;
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0 14px 12px;
  z-index: 2;
}

.home-showroom__numbers::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.home-showroom__dot {
  position: relative;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  line-height: 1;
  min-width: 18px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}

.home-showroom__dot.is-active {
  color: #fff;
  font-weight: 600;
}

.home-showroom__dot-line {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.home-showroom__dot:hover .home-showroom__dot-line,
.home-showroom__dot:focus-visible .home-showroom__dot-line,
.home-showroom__dot.is-active .home-showroom__dot-line {
  background: #fff;
  opacity: 1;
}

.home-showroom__dot:hover,
.home-showroom__dot:focus-visible {
  color: #fff;
  font-weight: 600;
}

.home-showroom__dot:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

.home-showroom__dot:first-child::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  left: -22px;
  bottom: -12px;
}

.home-showroom__dot:last-child::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

.home-method {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 clamp(72px, 8vw, 120px);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 48%),
    #050505;
}

.home-method__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.home-method__title {
  margin: 0 auto clamp(28px, 4vw, 48px);
  max-width: 900px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.home-method__grid {
  display: grid;
  grid-template-columns: repeat(var(--method-columns, 2), minmax(0, 1fr));
  gap: 22px;
}

.home-method__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.home-method__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
}

.home-method__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-method__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  color: inherit;
}

.home-method__icon span {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  display: block;
}

.home-method__card-title {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.home-method__content {
  flex: 1;
  min-width: 0;
}

.home-method__card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--muted);
}

.home-method__card-text p {
  margin: 0;
}

.showroom-process {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 clamp(68px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    #050505;
}

.showroom-process__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.showroom-process__title {
  margin: 0 auto 16px;
  max-width: 900px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.showroom-process__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Alegreya', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 24px;
  color: var(--muted);
}

.showroom-process__intro p {
  margin: 0;
}

.showroom-process__grid {
  margin-top: clamp(34px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(var(--showroom-process-columns, 4), minmax(0, 1fr));
  gap: 0;
}

.showroom-process__card {
  min-width: 0;
  padding: clamp(22px, 2.8vw, 38px) clamp(18px, 2vw, 28px);
  text-align: center;
  color: var(--text);
}

.showroom-process__card + .showroom-process__card {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-process__icon {
  display: grid;
  place-items: center;
  min-height: 92px;
  margin-bottom: 22px;
}

.showroom-process__icon svg,
.showroom-process__icon img {
  display: block;
  width: clamp(42px, 3vw, 54px);
  height: clamp(42px, 3vw, 54px);
  object-fit: contain;
}

.showroom-process__icon span {
  display: block;
  width: clamp(42px, 3vw, 54px);
  height: clamp(42px, 3vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.showroom-process__card-title {
  margin: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showroom-process__card-text {
  max-width: 320px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.showroom-process__card-text p {
  margin: 0;
}

.home-environments {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 clamp(72px, 8vw, 120px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 320px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 240px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    #050505;
}

.home-environments__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.home-environments__title {
  margin: 0 auto 20px;
  max-width: 920px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.home-environments__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}

.home-environments__text {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  color: var(--muted);
}

.home-environments__text p {
  margin: 0 0 1em;
}

.home-environments__text p:last-child {
  margin-bottom: 0;
}

.home-environments__grid {
  margin-top: clamp(32px, 4vw, 54px);
}

.home-environments__grid--two,
.home-environments__grid--three {
  display: grid;
  grid-template-columns: repeat(var(--environment-columns, 2), minmax(0, 1fr));
  gap: 24px;
}

.home-environments__grid--masonry {
  columns: 3 320px;
  column-gap: 24px;
}

.home-environments__card {
  position: relative;
  overflow: hidden;
  background: #101010;
  min-height: 360px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-environments__grid--masonry .home-environments__card {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
}

.home-environments__card::before,
.home-environments__card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-environments__card::before {
  background-image: var(--environment-bg, radial-gradient(circle at 20% 20%, #444 0, #1a1a1a 40%, #090909 100%));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-environments__card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.8) 100%),
    rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 420ms ease, background-color 420ms ease;
}

.home-environments__card-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.home-environments__card-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.home-environments__card-text {
  max-width: 320px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.home-environments__card-text p {
  margin: 0;
}

.home-environments__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-environments__card:hover::before,
.home-environments__card:focus-within::before {
  transform: scale(1.08);
}

.home-environments__card:hover::after,
.home-environments__card:focus-within::after {
  opacity: 1;
}

.home-environments__card:hover .home-environments__card-content,
.home-environments__card:focus-within .home-environments__card-content {
  opacity: 1;
  transform: translateY(0);
}

.home-environments__card-button:hover,
.home-environments__card-button:focus-visible {
  background: #fff;
  color: #111;
  border-color: #fff;
  transform: translateY(-1px);
}

@media (hover: none) {
  .home-environments__card::after {
    opacity: 1;
  }

  .home-environments__card-content {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-environments__grid--masonry .home-environments__card:nth-child(3n + 1) {
  min-height: 460px;
}

.home-environments__grid--masonry .home-environments__card:nth-child(3n + 2) {
  min-height: 330px;
}

.home-environments__grid--masonry .home-environments__card:nth-child(3n + 3) {
  min-height: 520px;
}

.home-project {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 10vw, 140px) clamp(16px, 4vw, 40px);
  background-image: var(--project-bg, radial-gradient(circle at 20% 20%, #444 0, #1a1a1a 40%, #090909 100%));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.home-project__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.7) 100%),
    rgba(0, 0, 0, 0.12);
}

.home-project__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  color: var(--text);
}

.home-project__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 35px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-project__text {
  margin: 22px auto 0;
  max-width: 640px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: var(--muted);
}

.home-project__text p {
  margin: 0;
}


.home-project__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.home-project__buttons .home-project__button {
  margin-top: 0;
}

@media (max-width: 640px) {
  .home-project__buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }
}

.art-design-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  margin-top: 30px;
  padding: 16px 38px;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: visible;
  transition: color 220ms ease;
}

.art-design-outline-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #131313;
  pointer-events: none;
  z-index: -1;
  transition: background-color 220ms ease;
}

.art-design-outline-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  pointer-events: none;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.art-design-outline-button:hover,
.art-design-outline-button:focus-visible {
  color: #fff;
}

.art-design-text-image-button:hover,
.art-design-text-image-button:focus-visible {
  color: var(--accent-hover) !important;
}

.art-design-text-image-button:hover,
.art-design-text-image-button:focus-visible {
  border-color: var(--accent-hover) !important;
}

.art-design-outline-button:hover::after,
.art-design-outline-button:focus-visible::after {
  opacity: 0;
  animation: art-design-outline-rebuild 5s linear forwards;
}

@keyframes art-design-outline-rebuild {
  0% {
    opacity: 0;
    border-color: transparent;
    transform: translate(10px, 10px);
  }
  8% {
    opacity: 0;
    border-color: transparent;
  }
  18% {
    opacity: 1;
    border-color: transparent;
    transform: translate(10px, 10px);
  }
  34% {
    opacity: 1;
    border-color: rgba(190, 38, 24, 0.72);
    transform: translate(10px, 10px);
  }
  58% {
    opacity: 1;
    border-color: rgba(190, 38, 24, 0.72);
    transform: translate(10px, 10px);
  }
  100% {
    opacity: 1;
    border-color: rgba(190, 38, 24, 0.72);
    transform: translate(10px, 10px);
  }
}

.home-project__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 220px;
  margin-top: 30px;
  padding: 16px 38px;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: visible;
  transition: transform 220ms ease, color 220ms ease;
}

.home-project__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #131313;
  pointer-events: none;
  z-index: -1;
  transition: background-color 220ms ease;
}

.home-project__button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  pointer-events: none;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.home-project__button-label {
  position: relative;
  z-index: 1;
}

.home-project__button:hover,
.home-project__button:focus-visible,
.home-project__button.mkdf-btn:hover,
.home-project__button.mkdf-btn:focus-visible,
.home-project__button:hover .home-project__button-label,
.home-project__button:focus-visible .home-project__button-label {
  color: #fff;
}

.home-project__button:hover::before,
.home-project__button:focus-visible::before {
  background: #2b2b2b;
}

.home-project__button:hover::after,
.home-project__button:focus-visible::after {
  opacity: 0;
  animation: home-project-outline-rebuild 5s linear forwards;
}

@keyframes home-project-outline-rebuild {
  0% {
    opacity: 0;
    border-color: transparent;
    transform: translate(10px, 10px);
  }
  8% {
    opacity: 0;
    border-color: transparent;
  }
  18% {
    opacity: 1;
    border-color: transparent;
    transform: translate(10px, 10px);
  }
  34% {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.72);
    transform: translate(10px, 10px);
  }
  58% {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.72);
    transform: translate(10px, 10px);
  }
  100% {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.72);
    transform: translate(10px, 10px);
  }
}

.home-project__button-diagonal {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(45deg);
  transform-origin: right center;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  transition: opacity 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.home-project__button:hover .home-project__button-diagonal,
.home-project__button:focus-visible .home-project__button-diagonal {
  background: rgba(255, 255, 255, 0.72);
  animation: home-project-diagonal-rebuild 5s linear forwards;
}

.home-project__button.mkdf-btn:hover .home-project__button-diagonal,
.home-project__button.mkdf-btn:focus-visible .home-project__button-diagonal {
  background: rgba(255, 255, 255, 0.72);
}

@keyframes home-project-diagonal-rebuild {
  0% {
    opacity: 0;
    transform: rotate(45deg) scaleX(0);
  }
  16% {
    opacity: 0;
    transform: rotate(45deg) scaleX(0);
  }
  40% {
    opacity: 1;
    transform: rotate(45deg) scaleX(0.45);
  }
  70% {
    opacity: 1;
    transform: rotate(45deg) scaleX(0.8);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scaleX(1);
  }
}

.showroom-interlocutore {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 10vw, 140px) clamp(16px, 4vw, 40px);
  background-image: var(--interlocutore-bg, radial-gradient(circle at 20% 20%, #444 0, #1a1a1a 40%, #090909 100%));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.showroom-interlocutore__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.68) 100%),
    rgba(0, 0, 0, 0.14);
}

.showroom-interlocutore__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  color: #fff;
}

.showroom-interlocutore__title {
  margin: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showroom-interlocutore__text {
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.showroom-interlocutore__column {
  min-width: 0;
}

.showroom-interlocutore__column p {
  margin: 0 0 1em;
}

.showroom-interlocutore__column p:last-child {
  margin-bottom: 0;
}

.home-brand {
  position: relative;
  padding: clamp(56px, 7vw, 112px) 0 clamp(72px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%),
    #050505;
}

.home-brand__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.home-brand__title {
  margin: 0 auto 18px;
  max-width: 900px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
}

.home-brand__text {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: var(--muted);
}

.home-brand__text p {
  margin: 0;
}

.home-brand__carousel {
  width: 100vw;
  max-width: 100vw;
  margin: clamp(28px, 4vw, 48px) calc(50% - 50vw) 0;
  overflow: hidden;
  padding: 6px clamp(16px, 3vw, 40px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.home-brand__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.home-brand__carousel:not(.is-animated) .home-brand__track {
  width: 100%;
  justify-content: center;
}

.home-brand__group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding-right: clamp(18px, 2vw, 30px);
}

.home-brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(180px, 16vw, 280px);
  min-height: clamp(110px, 11vw, 150px);
  margin: 0;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  flex: 0 0 auto;
}

.home-brand__logo-image {
  display: block;
  max-width: clamp(180px, 18vw, 260px);
  max-height: clamp(72px, 7vw, 108px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.12);
  opacity: 0.92;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.home-brand__logo:hover .home-brand__logo-image,
.home-brand__logo:focus-within .home-brand__logo-image {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-1px);
}

.home-brand__carousel:hover .home-brand__track {
  cursor: default;
}

.home-visit {
  position: relative;
  padding: clamp(52px, 6vw, 96px) 0 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.28) 100%),
    #050505;
}

.home-visit__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.home-visit__title {
  margin: 0 auto 18px;
  max-width: 900px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.home-visit__text {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.home-visit__text p {
  margin: 0 0 1em;
}

.home-visit__text p:last-child {
  margin-bottom: 0;
}

.home-visit__map-wrap {
  width: 100vw;
  max-width: 100vw;
  margin: clamp(32px, 4vw, 56px) calc(50% - 50vw) 0;
  height: clamp(360px, 44vw, 620px);
  overflow: hidden;
  background: #111;
}

.home-visit__map-wrap--black {
  position: relative;
  background: #000;
}

.home-visit__map-wrap--black::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.home-visit__map {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-visit__map-wrap--black .home-visit__map {
  filter: grayscale(1) brightness(0.55) contrast(1.15);
}

.site-footer {
  color: var(--text);
}

.site-footer__top {
  background: #1C1C1C;
  padding: clamp(48px, 5vw, 84px) 0;
}

.site-footer__copyright {
  background: #000;
  padding: 18px 0;
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
}

.site-footer__column {
  min-width: 0;
}

.footer-widget {
  color: var(--text);
}

.footer-widget__title {
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.titolo-footer {
  display: block;
  margin: 0 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 23px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}

.footer-widget p,
.footer-widget li,
.site-footer__copyright-text {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.footer-widget ul,
.footer-widget ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget li {
  position: relative;
  padding-left: 18px;
}

.footer-widget li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--accent-hover);
}

.footer-widget a,
.site-footer__copyright a {
  color: #fff;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-widget a:hover,
.footer-widget a:focus-visible,
.site-footer__copyright a:hover,
.site-footer__copyright a:focus-visible {
  color: var(--accent-hover);
}

.site-footer img,
.site-footer .custom-logo,
.site-footer .custom-logo-link img,
.site-footer .widget img,
.site-footer .textwidget img,
.site-footer .wp-block-image img,
.site-footer .wp-block-site-logo img {
  width: 50% !important;
  max-width: 50% !important;
  height: auto !important;
  display: block;
}

.showroom-page {
  background: #050505;
  color: var(--text);
}

.showroom-page__image-wrap {
  position: relative;
  width: 100%;
  min-height: min(72vh, 760px);
  overflow: hidden;
  background-color: #111;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.showroom-page__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.showroom-page__inner--overlay {
  width: 100%;
}

.showroom-page__content {
  padding: clamp(34px, 5vw, 76px) 0 clamp(24px, 4vw, 56px);
}

.showroom-page__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.showroom-page__title {
  margin: 0;
  max-width: 760px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.showroom-page__intro {
  max-width: 760px;
  margin-top: 18px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: var(--muted);
}

.showroom-page__intro p {
  margin: 0;
}

.showroom-page__body {
  padding: 0 0 clamp(56px, 6vw, 96px);
}

.showroom-page__body .showroom-page__inner {
  max-width: 900px;
}

.showroom-history {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0;
  background: #050505;
}

.showroom-history__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  gap: clamp(28px, 4vw, 64px);
}

.showroom-history__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  max-width: 560px;
  background: transparent;
  box-shadow: none;
}

.showroom-history.is-reversed .showroom-history__content {
  margin: 0;
  order: 2;
}

.showroom-history__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111;
  align-self: start;
  box-shadow: none;
}

.showroom-history.is-reversed .showroom-history__media {
  order: 1;
}

.showroom-history__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.showroom-history__content,
.showroom-history__media {
  box-shadow: none;
}

.showroom-history__content { color: var(--text); }

.showroom-history__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.showroom-history__line {
  display: block;
  width: 52px;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255, 255, 255, 0.28);
}

.showroom-history__text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.showroom-history__text p {
  margin: 0 0 1em;
}

.showroom-history__text p:last-child {
  margin-bottom: 0;
}

.art-design-inline-link-button {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.art-design-inline-link-button:hover,
.art-design-inline-link-button:focus-visible {
  color: var(--accent-hover);
  border-color: transparent;
  transform: translateY(-1px);
}

.showroom-brand {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0;
  background: #050505;
}

.showroom-brand__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.showroom-brand__content {
  display: flex;
  justify-content: flex-start;
  align-self: center;
  grid-column: 2;
  grid-row: 1;
  margin-left: -20px;
  margin-right: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.showroom-brand.is-reversed .showroom-brand__content {
  grid-column: 1;
  margin-left: 0;
  margin-right: -20px;
  order: 2;
}

.showroom-brand__panel {
  width: 100%;
  padding: clamp(36px, 4.5vw, 64px);
  background: #1B1B1B;
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.showroom-brand__title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  line-height: 42px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.showroom-brand__line {
  display: block;
  width: 52px;
  height: 1px;
  margin: 22px 0 18px;
  background: rgba(255, 255, 255, 0.28);
}

.showroom-brand__text {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
}

.showroom-brand__text p {
  margin: 0 0 1em;
}

.showroom-brand__text p:last-child {
  margin-bottom: 0;
}

.art-design-inline-link-button {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.art-design-inline-link-button:hover,
.art-design-inline-link-button:focus-visible {
  color: var(--accent-hover);
  border-color: transparent;
  transform: translateY(-1px);
}

.showroom-brand__image,
.showroom-brand__media {
  min-height: 520px;
  overflow: hidden;
  background: #111;
  align-self: stretch;
}

.showroom-brand__image img,
.showroom-brand__slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.showroom-brand__media {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  width: 100%;
}

.showroom-brand.is-reversed .showroom-brand__media {
  grid-column: 2;
  margin-right: 0;
  margin-left: 0;
}

.showroom-brand__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111;
}

.showroom-brand__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 650ms ease;
  will-change: transform;
}

.showroom-brand__slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.showroom-brand__slide img {
  display: block;
}

.showroom-brand__numbers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin: 26px auto 0;
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0 14px 12px;
  z-index: 2;
}

.showroom-brand__numbers::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.showroom-brand__dot {
  position: relative;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  line-height: 1;
  min-width: 18px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}

.showroom-brand__dot.is-active {
  color: #fff;
  font-weight: 600;
}

.showroom-brand__dot-line {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.showroom-brand__dot:hover .showroom-brand__dot-line,
.showroom-brand__dot:focus-visible .showroom-brand__dot-line,
.showroom-brand__dot.is-active .showroom-brand__dot-line {
  background: #fff;
  opacity: 1;
}

.showroom-brand__dot:hover,
.showroom-brand__dot:focus-visible {
  color: #fff;
  font-weight: 600;
}

.showroom-brand__dot:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

.showroom-brand__dot:first-child::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  left: -22px;
  bottom: -12px;
}

.showroom-brand__dot:last-child::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

.showroom-gallery {
  position: relative;
  padding: clamp(56px, 7vw, 110px) 0 0;
  background: #050505;
}

.showroom-gallery__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.showroom-gallery__title {
  margin: 0 auto;
  max-width: 760px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.showroom-gallery__grid {
  width: 100vw;
  margin-top: clamp(30px, 4vw, 56px);
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(var(--showroom-gallery-columns, 3), minmax(0, 1fr));
  gap: 0;
}

.showroom-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}

.showroom-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 400ms ease, filter 400ms ease;
}

.showroom-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 320ms ease;
}

.showroom-gallery__item:hover img,
.showroom-gallery__item:focus-visible img {
  transform: scale(1.06);
}

.showroom-gallery__item:hover .showroom-gallery__overlay,
.showroom-gallery__item:focus-visible .showroom-gallery__overlay {
  background: rgba(0, 0, 0, 0.28);
}

.showroom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.showroom-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

.showroom-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.showroom-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(92vw, 1440px);
  height: min(88vh, 1100px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.showroom-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100% - 36px);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.showroom-lightbox__caption {
  max-width: 92vw;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
  text-align: center;
}

.showroom-lightbox__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.showroom-lightbox__close span {
  display: block;
  position: absolute;
  inset: 19px 0 auto 0;
  height: 2px;
  background: currentColor;
}

.showroom-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.showroom-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

body.is-showroom-lightbox-open {
  overflow: hidden;
}

.hero-carousel__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.hero-carousel__control:hover {
  background: rgba(0, 0, 0, 0.52);
}

.hero-carousel__control--prev {
  left: 16px;
}

.hero-carousel__control--next {
  right: 16px;
}

.hero-carousel__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 0 14px 12px;
}

.hero-carousel__dots::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-carousel__dot,
.home-showroom__dot {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  min-width: 18px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}

.hero-carousel__dot.is-active,
.home-showroom__dot.is-active {
  color: #fff;
  font-weight: 600;
}

.hero-carousel__dot-line,
.home-showroom__dot-line {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.hero-carousel__dot:hover .hero-carousel__dot-line,
.hero-carousel__dot:focus-visible .hero-carousel__dot-line,
.hero-carousel__dot.is-active .hero-carousel__dot-line,
.home-showroom__dot:hover .home-showroom__dot-line,
.home-showroom__dot:focus-visible .home-showroom__dot-line,
.home-showroom__dot.is-active .home-showroom__dot-line {
  background: #fff;
  opacity: 1;
}

.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible,
.home-showroom__dot:hover,
.home-showroom__dot:focus-visible {
  color: #fff;
  font-weight: 600;
}

.hero-carousel__dot:not(:last-child)::after,
.home-showroom__dot:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -10px;
}

.hero-carousel__dot:first-child::before,
.home-showroom__dot:first-child::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  left: -22px;
  bottom: -10px;
}

.hero-carousel__dot:last-child::after,
.home-showroom__dot:last-child::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -10px;
}

.art-design-meta-grid {
  display: grid;
  gap: 16px;
}

.art-design-home-slider {
  display: grid;
  gap: 18px;
}

.art-design-home-slider__list {
  display: grid;
  gap: 18px;
}

.art-design-home-slider__card {
  padding: 18px;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  background: #fafafa;
}

.art-design-home-slider__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f1f1f1;
  border: 1px solid #dfdfdf;
}

.art-design-home-slider__drag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  user-select: none;
}

.art-design-home-slider__remove {
  color: #b91c1c;
  text-decoration: none;
}

.art-design-meta-grid label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.art-design-meta-grid input[type="text"],
.art-design-meta-grid select {
  width: 100%;
  max-width: 640px;
}

.art-design-media-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.art-design-preview {
  display: block;
  margin-top: 10px;
  max-width: 260px;
}

.art-design-preview img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 100px;
  height: auto;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-carousel__panel {
    width: min(100vw - 24px, 520px);
    margin: auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: translateX(0) translateY(0);
  }

  .hero-carousel__control {
    top: auto;
    bottom: 84px;
    transform: none;
  }

  .hero-carousel__control--prev {
    left: 12px;
  }

  .hero-carousel__control--next {
    right: 12px;
  }

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

  .showroom-gallery__inner {
    padding: 0 12px;
  }

  .showroom-process {
    padding-left: 12px;
    padding-right: 12px;
  }

  .showroom-process__inner {
    width: min(100vw - 24px, 768px);
    margin: 0 auto;
  }

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

  .showroom-interlocutore {
    min-height: 0;
    padding: 36px 12px 42px;
    background-attachment: scroll;
  }

  .showroom-interlocutore__inner {
    width: 100%;
  }

  .showroom-interlocutore__title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.15;
  }

  .showroom-interlocutore__text {
    grid-template-columns: 1fr;
  }

  h1.showroom-page__title,
  h1.showroom-brand__title {
    font-size: 60px;
    line-height: 70px;
  }

  .home-philosophy,
  .home-relation {
    padding: 48px 0 88px;
  }

  .showroom-brand {
    padding: 48px 0 88px;
  }

  .showroom-history {
    padding: 48px 0 88px;
  }

  .home-philosophy__inner,
  .home-relation__inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .home-philosophy__image,
  .home-relation__image {
    order: 1;
    min-height: 300px;
    width: 100%;
    max-width: none;
  }

  .home-philosophy__image img,
  .home-relation__image img {
    min-height: 300px;
  }

  .home-philosophy__content,
  .home-relation__content {
    order: 2;
    margin: 0;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    max-width: none;
    align-self: stretch;
  }

  .home-philosophy__panel,
  .home-relation__panel {
    width: 100%;
    padding: 28px 24px;
  }

  .showroom-brand__inner {
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-brand__content,
  .showroom-brand.is-reversed .showroom-brand__content {
    width: 100%;
    margin: 0;
  }

  .showroom-brand__media,
  .showroom-brand.is-reversed .showroom-brand__media {
    width: 100%;
  }

  .showroom-brand__panel {
    width: 100%;
    padding: 28px 24px;
  }

  .showroom-history__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    width: min(768px, calc(100vw - 56px));
    margin: 0 auto;
    padding: 0;
    gap: 40px;
  }

  .showroom-history__content,
  .showroom-history.is-reversed .showroom-history__content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .showroom-history__content {
    order: 2;
  }

  .showroom-history__content {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .showroom-history__media,
  .showroom-history.is-reversed .showroom-history__media {
    display: block !important;
    width: 100% !important;
    order: 1;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .home-philosophy,
  .home-relation {
    padding: 42px 0 78px;
  }

  .showroom-brand {
    padding: 42px 0 78px;
  }

  .showroom-history {
    padding: 42px 0 78px;
  }

  .home-philosophy__inner,
  .home-relation__inner {
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-brand__inner {
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-history__inner {
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .site-branding .custom-logo {
    width: 166px;
    max-width: 166px;
    height: auto;
  }

  .site-header {
    right: 16px;
    left: 16px;
  }

  .hero-carousel__slide {
    align-items: center;
    justify-content: center;
  }

  .hero-carousel,
  .hero-carousel__track,
  .hero-carousel__slide {
    min-height: 100dvh;
    height: 100dvh;
  }

  .hero-carousel__track {
    transition-duration: 550ms;
  }

  .hero-carousel__panel {
    width: calc(100vw - 16px);
    min-height: auto;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    padding: 18px 18px 16px;
    gap: 14px;
  }

  .hero-carousel__slide.is-active .hero-carousel__panel {
    transform: translate(-50%, -50%);
  }

  .hero-carousel__title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.06;
    padding-bottom: 12px;
  }

  .hero-carousel__copy {
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-carousel__button {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 11px;
  }

  .hero-carousel__image {
    width: min(160px, 100%);
    padding-top: 10px;
  }

  h1.showroom-page__title,
  h1.showroom-brand__title {
    font-size: 38px;
    line-height: 44px;
  }

  .home-showroom {
    padding: 28px 0 60px;
  }

  .home-showroom__inner {
    width: min(600px, calc(100vw - 32px));
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
  }

  .home-showroom__panel {
    padding: 28px 22px;
  }

  .home-showroom__stage,
  .home-showroom__image,
  .home-showroom__slide img,
  .home-showroom__image img {
    min-height: 280px;
  }

  .home-showroom__numbers {
    width: max-content;
    max-width: 100%;
    margin: 14px auto 0;
    gap: 28px;
    padding: 0 14px 12px;
  }

  .home-showroom__numbers::before {
    left: -12px;
    right: -12px;
  }

  .home-philosophy,
  .home-relation {
    padding: 34px 0 72px;
  }

  .home-philosophy__inner,
  .home-relation__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    grid-template-columns: none !important;
    gap: 0;
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
  }

  .home-philosophy__image,
  .home-relation__image {
    width: 100%;
    max-width: none;
  }

  .home-philosophy__content,
  .home-relation__content {
    margin-right: 0;
    margin-left: 0;
    order: 2;
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin-top: 0;
  }

  .home-philosophy__panel,
  .home-relation__panel {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 26px 22px;
  }

  .home-philosophy__title,
  .home-relation__title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.15;
  }

  .home-philosophy__image,
  .home-relation__image {
    min-height: 260px;
    order: 1;
  }

  .home-philosophy__image img,
  .home-relation__image img {
    min-height: 260px;
  }

  .home-method__inner,
  .home-environments__inner,
  .home-brand__inner,
  .home-visit__inner,
  .showroom-gallery__inner,
  .showroom-page__inner,
  .showroom-page__body .showroom-page__inner {
    padding: 0 10px;
  }

  .home-showroom {
    padding: 24px 0 60px;
  }

  .home-showroom__inner {
    gap: 0;
    padding: 0 10px;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
  }

  .home-showroom__content {
    margin-right: 0;
    margin-left: 0;
    order: 1;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    align-self: stretch;
  }

  .home-showroom__media {
    width: 100%;
    align-self: stretch;
  }

  .home-showroom__panel {
    width: 100%;
    padding: 28px 22px;
  }

  .home-showroom__title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.15;
  }

  .home-showroom__image {
    min-height: 280px;
    order: 2;
    grid-column: auto;
    grid-row: auto;
  }

  .home-showroom__image img,
  .home-showroom__slide img {
    min-height: 280px;
  }

  .home-showroom__numbers {
    margin-top: 14px;
    gap: 22px;
    padding: 0 10px 14px;
  }

  .home-showroom__numbers::before {
    left: 10px;
    right: 10px;
  }

  .showroom-page__overlay {
    align-items: center;
  }

  .showroom-page__content {
    padding: 28px 0 18px;
  }

  .showroom-page__image-wrap {
    min-height: 320px;
    background-attachment: scroll;
  }

  .showroom-page__title {
    font-size: 60px;
    line-height: 70px;
  }

  .showroom-page__intro {
    font-size: 15px;
    line-height: 24px;
    margin-top: 14px;
  }

  .showroom-history {
    padding: 42px 0 78px;
  }

  .showroom-history__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    grid-template-columns: 1fr !important;
    gap: 40px;
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-history__content,
  .showroom-history.is-reversed .showroom-history__content {
    display: block !important;
    width: 100% !important;
    order: 2;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
  }

  .showroom-history__media,
  .showroom-history.is-reversed .showroom-history__media {
    display: block !important;
    width: 100% !important;
    order: 1;
    min-height: 300px;
    margin-bottom: 40px;
  }

  .showroom-history__media img {
    min-height: 300px;
  }

  .showroom-history__title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.15;
  }

  .showroom-brand {
    padding: 34px 0 72px;
  }

  .showroom-brand__inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: min(600px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 0;
  }

  .showroom-brand__content,
  .showroom-brand.is-reversed .showroom-brand__content {
    width: 100%;
    order: 2;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .showroom-brand__media,
  .showroom-brand.is-reversed .showroom-brand__media {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    min-height: 280px;
  }

  .showroom-brand__image,
  .showroom-brand__stage,
  .showroom-brand__image img,
  .showroom-brand__slide img {
    min-height: 280px;
  }

  .showroom-brand__panel {
    width: 100%;
    padding: 26px 22px;
  }

  .showroom-brand__title {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
    line-height: 1.15;
  }

  .showroom-brand__numbers {
    margin-top: 14px;
    gap: 22px;
    padding: 0 10px 14px;
  }

  .showroom-brand__numbers::before {
    left: 10px;
    right: 10px;
  }

  .showroom-process__grid {
    grid-template-columns: 1fr;
  }

  .showroom-process__card {
    padding: 24px 12px;
  }

  .showroom-process__card + .showroom-process__card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .showroom-process {
    padding-left: 12px;
    padding-right: 12px;
  }

  .showroom-process__inner {
    width: min(100vw - 24px, 768px);
    margin: 0 auto;
  }

  .showroom-lightbox__figure {
    width: 96vw;
    height: 76vh;
  }

  .home-method {
    padding: 42px 0 60px;
  }

  .home-method__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-method__card {
    gap: 14px;
  }

  .home-method__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.3;
  }

  .home-environments {
    padding: 44px 0 64px;
  }

  .home-environments__title {
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .home-environments__box {
    padding: 0 10px;
  }

  .home-environments__text {
    font-size: 15px;
    line-height: 24px;
  }

  .home-brand {
    padding: 44px 0 64px;
  }

  .home-brand__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .home-brand__text {
    font-size: 15px;
    line-height: 24px;
  }

  .home-brand__logo {
    min-height: 88px;
    padding: 14px;
  }

  .home-brand__logo-image {
    max-width: 150px;
    max-height: 56px;
  }

  .home-visit {
    padding: 40px 0 0;
  }

  .home-visit__inner {
    padding: 0 10px;
  }

  .home-visit__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .home-visit__text {
    font-size: 15px;
    line-height: 24px;
  }

  .home-visit__map-wrap {
    height: 300px;
    margin-top: 28px;
  }

  .site-footer__top {
    padding: 36px 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__copyright {
    padding: 16px 0;
  }

  .home-environments__grid--two,
  .home-environments__grid--three {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-environments__grid--masonry {
    columns: 1;
  }

  .home-environments__card {
    min-height: 280px;
  }

  .home-environments__grid--masonry .home-environments__card:nth-child(3n + 1),
  .home-environments__grid--masonry .home-environments__card:nth-child(3n + 2),
  .home-environments__grid--masonry .home-environments__card:nth-child(3n + 3) {
    min-height: 280px;
  }

  .home-project {
    min-height: auto;
    background-attachment: scroll;
    padding: 56px 16px 72px;
  }

  .home-project__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .home-project__text {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-carousel__control {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .hero-carousel__dots {
    bottom: 12px;
    gap: 12px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .home-showroom {
    padding: 40px 0 84px !important;
  }

  .home-showroom__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: min(768px, calc(100vw - 56px)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .home-showroom__content,
  .home-showroom__media {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
  }

  .home-showroom__content {
    order: 1 !important;
  }

  .home-showroom__panel {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 32px 28px !important;
  }

  .home-showroom__media {
    order: 2 !important;
  }

  .home-showroom__stage,
  .home-showroom__image,
  .home-showroom__image img,
  .home-showroom__slide img {
    display: block !important;
    width: 100% !important;
    min-height: 360px !important;
  }

  .home-showroom__numbers {
    width: 100% !important;
    max-width: none !important;
    margin-top: 16px !important;
    padding: 0 10px 14px !important;
  }

  .home-showroom__numbers::before {
    left: 10px !important;
    right: 10px !important;
  }
}

@media (max-width: 1024px) {
  .home-showroom__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 34px 0 0 !important;
    padding: 0 14px 12px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 28px !important;
  }

  .home-showroom__numbers::before {
    left: -12px !important;
    right: -12px !important;
  }

  .home-showroom__dot-line {
    bottom: -10px !important;
  }
}

@media (max-width: 640px) {
  .home-showroom__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 14px 0 0 !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 18px !important;
    padding: 0 8px 10px !important;
  }

  .home-showroom__numbers::before {
    left: -8px !important;
    right: -8px !important;
    bottom: 1px !important;
  }

  .home-showroom__dot {
    font-size: 15px !important;
    min-width: 16px !important;
    align-items: center !important;
    padding-bottom: 2px !important;
  }

  .home-showroom__dot-line {
    bottom: -7px !important;
    width: 30px !important;
  }

  .home-showroom__dot:not(:last-child)::after,
  .home-showroom__dot:first-child::before,
  .home-showroom__dot:last-child::after {
    width: 12px !important;
    bottom: -7px !important;
  }
}

@media (max-width: 1024px) {
  .showroom-brand__inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: min(768px, calc(100vw - 56px)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .showroom-brand__content,
  .showroom-brand.is-reversed .showroom-brand__content,
  .showroom-brand__media,
  .showroom-brand.is-reversed .showroom-brand__media {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
  }

  .showroom-brand__content,
  .showroom-brand.is-reversed .showroom-brand__content {
    order: 1 !important;
  }

  .showroom-brand__panel {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 32px 28px !important;
  }

  .showroom-brand__media,
  .showroom-brand.is-reversed .showroom-brand__media {
    order: 2 !important;
  }

  .showroom-brand__stage,
  .showroom-brand__image,
  .showroom-brand__image img,
  .showroom-brand__slide img {
    display: block !important;
    width: 100% !important;
    min-height: 360px !important;
  }

  .showroom-brand__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 26px 0 0 !important;
    padding: 0 14px 12px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 28px !important;
  }

  .showroom-brand__numbers::before {
    left: -12px !important;
    right: -12px !important;
  }

  .showroom-brand__dot-line {
    bottom: -10px !important;
  }
}

@media (max-width: 640px) {
  .showroom-brand {
    padding: 28px 0 60px;
  }

  .showroom-brand__inner {
    width: min(600px, calc(100vw - 32px)) !important;
  }

  .showroom-brand__panel {
    padding: 28px 22px !important;
  }

  .showroom-brand__stage,
  .showroom-brand__image,
  .showroom-brand__image img,
  .showroom-brand__slide img {
    min-height: 280px !important;
  }

  .showroom-brand__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 14px 0 0 !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 28px !important;
  }

  .showroom-brand__numbers::before {
    left: -12px !important;
    right: -12px !important;
  }

  .showroom-brand__dot-line {
    bottom: -10px !important;
  }
}

/* Keep home showroom numbers aligned with the showroom text-slider component */
.home-showroom__numbers {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  margin: 26px auto 0;
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0 14px 12px;
  z-index: 2;
}

.home-showroom__numbers::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: 2px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.home-showroom__dot {
  position: relative;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-indent: 0.02em;
  line-height: 1;
  min-width: 18px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}

.home-showroom__dot.is-active {
  color: #fff;
  font-weight: 600;
}

.home-showroom__dot-line {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  opacity: 0;
  transform: translateX(-50%);
  transition: background 180ms ease, opacity 180ms ease;
}

.home-showroom__dot:hover .home-showroom__dot-line,
.home-showroom__dot:focus-visible .home-showroom__dot-line,
.home-showroom__dot.is-active .home-showroom__dot-line {
  background: #fff;
  opacity: 1;
}

.home-showroom__dot:hover,
.home-showroom__dot:focus-visible {
  color: #fff;
  font-weight: 600;
}

.home-showroom__dot:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

.home-showroom__dot:first-child::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  left: -22px;
  bottom: -12px;
}

.home-showroom__dot:last-child::after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
  transition: opacity 180ms ease;
  transform: rotate(-45deg);
  transform-origin: center;
  position: absolute;
  right: -22px;
  bottom: -12px;
}

@media (max-width: 1024px) {
  .home-showroom__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 24px 0 0 !important;
    padding: 0 14px 12px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 28px !important;
  }

  .home-showroom__numbers::before {
    left: -12px !important;
    right: -12px !important;
  }

  .home-showroom__dot-line {
    bottom: -10px !important;
  }
}

@media (max-width: 640px) {
  .home-showroom__numbers {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 26px 0 0 !important;
    padding: 0 14px 12px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 28px !important;
  }

  .home-showroom__numbers::before {
    left: -12px !important;
    right: -12px !important;
    bottom: 2px !important;
  }

  .home-showroom__dot {
    font-size: 17px !important;
    min-width: 18px !important;
    align-items: flex-end !important;
    padding-bottom: 0 !important;
  }

  .home-showroom__dot-line {
    bottom: -10px !important;
    width: 38px !important;
  }

  .home-showroom__dot:not(:last-child)::after,
  .home-showroom__dot:first-child::before,
  .home-showroom__dot:last-child::after {
    width: 16px !important;
    bottom: -12px !important;
  }
}

/* Reduce the gap between the home showroom and brand sections */
.home-showroom {
  padding-bottom: clamp(36px, 5vw, 64px) !important;
}

.home-brand {
  padding-top: clamp(28px, 4vw, 56px) !important;
}

@media (max-width: 1024px) {
  .home-showroom {
    padding-bottom: 32px !important;
  }

  .home-brand {
    padding-top: 20px !important;
  }
}

@media (max-width: 640px) {
  .home-showroom {
    padding-top: 18px !important;
    padding-bottom: 28px !important;
  }

  .home-brand {
    padding-top: 0 !important;
  }
}

@media (max-width: 1500px) {
  .home-project {
    min-height: auto;
    padding: 32px 16px 36px;
    background-attachment: scroll;
  }

  .home-project__inner {
    max-width: 680px;
  }

  .home-project__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.08;
  }

  .home-project__text {
    margin-top: 14px;
    font-size: 15px;
    line-height: 24px;
  }

  .art-design-outline-button {
    min-height: 46px;
    min-width: 190px;
    margin-top: 18px;
    padding: 11px 24px;
  }
}

@media (max-width: 640px) {
  .home-project {
    padding: 20px 14px 24px;
  }

  .home-project__text {
    margin-top: 12px;
  }

  .art-design-outline-button {
    min-width: 176px;
    margin-top: 16px;
  }

  .home-brand {
    padding-top: 0 !important;
  }
}

@media (max-height: 900px) and (min-width: 1025px) {
  .home-project {
    min-height: 100vh;
    padding-top: clamp(40px, 6vh, 72px);
    padding-bottom: clamp(40px, 6vh, 72px);
  }

  .home-project__inner {
    max-width: 680px;
  }

  .home-project__title {
    font-size: 52px;
    line-height: 60px;
  }

  .home-project__text {
    margin-top: 16px;
    max-width: 600px;
    font-size: 15px;
    line-height: 24px;
  }

  .home-project__buttons {
    margin-top: 22px;
    gap: 28px;
  }

  .home-project__button {
    min-height: 48px;
    min-width: 200px;
    margin-top: 0;
    padding: 12px 28px;
  }
}

@media (max-height: 780px) and (min-width: 1025px) {
  .home-project {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-project__title {
    font-size: 44px;
    line-height: 50px;
  }

  .home-project__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
  }

  .home-project__buttons {
    margin-top: 18px;
    gap: 22px;
  }

  .home-project__button {
    min-height: 44px;
    min-width: 186px;
    padding: 10px 24px;
  }
}

@media (max-width: 1024px) {
  .home-project {
    display: block;
    min-height: 0 !important;
    padding: 14px 14px 14px !important;
    background-attachment: scroll !important;
  }

  .home-project__overlay {
    background: rgba(0, 0, 0, 0.22) !important;
  }

  .home-project__inner {
    max-width: 620px !important;
    margin: 0 auto;
  }

  .home-project__title {
    font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .home-project__text {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .art-design-outline-button {
    min-height: 42px !important;
    min-width: 168px !important;
    margin-top: 12px !important;
    padding: 10px 20px !important;
  }
}

@media (max-width: 640px) {
  .home-project {
    padding: 8px 14px 10px !important;
  }

  .home-project__text {
    margin-top: 8px !important;
  }

  .art-design-outline-button {
    min-width: 160px !important;
    margin-top: 10px !important;
  }

  .home-brand {
    padding-top: 0 !important;
  }
}



/* Final mobile tightening for the gap between showroom and brand */
@media (max-width: 1024px) {
  .home-project {
    display: block !important;
    min-height: 0 !important;
    padding: 0 14px 8px !important;
    margin-bottom: 0 !important;
    background-attachment: scroll !important;
  }

  .home-project__overlay {
    background: rgba(0, 0, 0, 0.18) !important;
  }

  .home-project__inner {
    max-width: 620px !important;
    margin: 0 auto !important;
  }

  .home-project__title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.05 !important;
  }

  .home-project__text {
    margin-top: 8px !important;
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .art-design-outline-button {
    min-height: 42px !important;
    min-width: 168px !important;
    margin-top: 10px !important;
    padding: 10px 20px !important;
  }

  .home-brand {
    position: relative !important;
    z-index: 2 !important;
    margin-top: -56px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .home-project {
    padding: 0 14px 4px !important;
  }

  .home-brand {
    margin-top: -40px !important;
  }
}

/* Restore CTA full spacing while keeping the home gap tighter via Brand */
@media (max-width: 1024px) {
  .home-project {
    padding: 14px 14px 14px !important;
  }

  .home-brand {
    margin-top: -40px !important;
  }
}

@media (max-width: 640px) {
  .home-project {
    padding: 8px 14px 10px !important;
  }

  .home-brand {
    margin-top: -24px !important;
  }
}

/* Give the home CTA full more vertical breathing room on mobile */
@media (max-width: 1024px) {
  .home-project {
    min-height: 340px !important;
    padding: 26px 14px 30px !important;
  }

  .home-project__inner {
    max-width: 640px !important;
  }

  .home-project__text {
    margin-top: 12px !important;
  }

  .art-design-outline-button {
    margin-top: 16px !important;
  }

  .home-brand {
    margin-top: -28px !important;
  }
}

@media (max-width: 640px) {
  .home-project {
    min-height: 320px !important;
    padding: 22px 14px 26px !important;
  }

  .home-project__title {
    font-size: clamp(1.45rem, 8vw, 1.9rem) !important;
  }

  .home-project__text {
    margin-top: 10px !important;
  }

  .art-design-outline-button {
    min-width: 168px !important;
    margin-top: 14px !important;
  }

  .home-brand {
    margin-top: -18px !important;
  }
}

/* Add 20px vertical breathing room to every CTA full section on mobile */
@media (max-width: 1024px) {
  .home-project {
    padding-top: 46px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 640px) {
  .home-project {
    padding-top: 42px !important;
    padding-bottom: 46px !important;
  }
}
