:root {
  --white: #fff;
  --ivory: #f7f5f1;
  --black: #111;
  --charcoal: #2f3130;
  --soft: #666;
  --line: #ddd;
  --gold: #b89d6b;
  --max: 1440px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
  min-width: 0;
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width .3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.site-header .language-switcher {
  flex: 0 0 auto;
}

.site-header .lang-btn {
  min-width: 40px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 42px) clamp(20px, 5vw, 72px) 60px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .82) 43%, rgba(255, 255, 255, .22) 100%),
    url("../img/hero-showroom-user-2.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-label {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1;
}

h1 {
  max-width: 18ch;
  font-size: clamp(40px, 4.9vw, 74px);
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
}

h3 {
  font-size: clamp(30px, 3vw, 36px);
}

.hero-text {
  max-width: 610px;
  margin: 28px 0 38px;
  color: #333;
  font-size: clamp(16px, 1.6vw, 18px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 190px;
  padding: 14px 22px;
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: var(--ivory);
}

.section-padding {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
}

.split-section.section-padding {
  padding-top: clamp(58px, 7vw, 96px);
}

.image-panel {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  overflow: hidden;
  background: var(--ivory);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-slider {
  position: absolute;
  inset: 0;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.about-slide.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: rgba(17, 17, 17, .28);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.slider-dot.active,
.slider-dot:hover,
.slider-dot:focus-visible {
  background: var(--white);
  transform: scale(1.2);
}

.text-panel p:not(.section-label) {
  margin-top: 22px;
  color: var(--soft);
  font-size: clamp(16px, 1.5vw, 17px);
}

#about .text-panel h2 {
  font-size: clamp(32px, 4vw, 58px);
}

#about .text-panel p:not(.section-label) {
  text-indent: 1.6em;
}

#about .about-section-label {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 0 clamp(4px, 1vw, 14px);
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .16em;
}

.vision-mission {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 54px);
  margin-top: clamp(22px, 4vw, 42px);
}

.statement-block {
  min-width: 0;
  padding-top: 26px;
  border-top: 1px solid var(--black);
}

.statement-block span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.statement-block p {
  max-width: 68ch;
  margin-top: 18px;
  color: #555;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.7vw, 23px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.48;
}

.partner-strip {
  width: 100%;
  overflow: hidden;
  margin: clamp(34px, 5vw, 72px) 0 clamp(42px, 6vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-title {
  padding: 26px clamp(20px, 5vw, 72px) 0;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 28s linear infinite;
}

.partner-strip:hover .partner-track {
  animation-play-state: paused;
}

.partner-list {
  display: flex;
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding: 24px clamp(24px, 4vw, 60px);
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.partner-list span {
  display: inline-flex;
  align-items: center;
}

.partner-list span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: clamp(42px, 6vw, 92px);
  border-radius: 50%;
  background: var(--gold);
}

@keyframes partnerMarquee {
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head h2 {
  max-width: 760px;
}

.collections-section .section-head {
  display: block;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.collections-section .section-label {
  margin-bottom: 18px;
}

.collections-section .section-head h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(38px, 4.4vw, 66px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.collection-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.collection-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-6px);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.9);
}

.collection-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.7vw, 34px);
}

.collection-card span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
}

.collection-card h3 {
  margin-top: 34px;
}

.collection-card p {
  margin-top: 14px;
  color: inherit;
  opacity: .72;
}

.expertise,
.process {
  width: 100%;
  max-width: none;
  background: var(--ivory);
}

.process.section-padding {
  padding-top: clamp(34px, 5vw, 66px);
}

.expertise .section-head,
.expertise-grid,
.process .section-head,
.timeline {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.expertise .section-head {
  display: block;
  max-width: 1120px;
  text-align: center;
}

.expertise .section-label {
  margin-bottom: 18px;
  font-weight: 800;
  text-align: center;
}

.expertise .section-head h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(38px, 4.2vw, 64px);
  white-space: nowrap;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.expertise-mosaic {
  position: relative;
  width: min(100%, 1560px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(23, clamp(34px, 4.2vw, 66px));
  grid-auto-rows: clamp(34px, 4.2vw, 66px);
  gap: clamp(12px, 1.4vw, 22px);
  margin: clamp(70px, 9vw, 130px) auto clamp(30px, 5vw, 70px);
  padding: clamp(48px, 7vw, 110px) clamp(18px, 4vw, 64px);
  color: var(--black);
  background:
    linear-gradient(120deg, rgba(64, 54, 39, .045) 1px, transparent 1px),
    linear-gradient(30deg, rgba(64, 54, 39, .03) 1px, transparent 1px),
    #eee9df;
  background-size: 34px 34px, 34px 34px, auto;
  overflow: hidden;
}

.expertise-mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 35%, rgba(184, 157, 107, .22), transparent 44%);
}

.mosaic-intro {
  position: relative;
  z-index: 3;
  grid-column: 2 / span 6;
  grid-row: 1 / span 4;
  align-self: center;
  padding: clamp(20px, 2.5vw, 34px);
  background: rgba(238, 233, 223, .92);
  box-shadow: 0 18px 50px rgba(66, 54, 36, .08);
  backdrop-filter: blur(8px);
}

.mosaic-kicker {
  margin-bottom: 14px;
  color: #c6a96f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.mosaic-intro h3 {
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: .98;
}

.mosaic-intro > p:last-child {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(17, 17, 17, .62);
  font-size: 14px;
}

.mosaic-word {
  position: absolute;
  top: 20%;
  right: -2.5%;
  color: transparent;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(120px, 20vw, 330px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(55, 46, 34, .12);
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
  pointer-events: none;
}

.mosaic-tile {
  --parallax-y: 0px;
  --tile-parallax-y: 0px;
  --tile-scale: 1;
  --parallax-scale: 1.16;
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  background: #252724;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
  transform: translate3d(0, var(--tile-parallax-y), 0) scale(var(--tile-scale));
  will-change: transform;
  transition: transform .35s ease, box-shadow .35s ease;
}

.mosaic-tile img {
  position: absolute;
  top: -10%;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 120%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--parallax-scale));
  will-change: transform;
  transition: filter .45s ease;
}

.mosaic-tile::after {
  display: none;
}

.mosaic-tile figcaption {
  display: none;
}

.mosaic-tile figcaption span {
  color: #c6a96f;
}

.mosaic-tile figcaption strong {
  font-weight: 500;
}

.mosaic-tile:hover {
  --tile-scale: 1.025;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .48);
  z-index: 4;
}

.mosaic-tile:hover img {
  --parallax-scale: 1.2;
  filter: saturate(1) contrast(1);
}

.mosaic-tile-pattern {
  grid-column: 7 / span 5;
  grid-row: 2 / span 6;
}

.mosaic-tile-thread {
  grid-column: 1 / span 4;
  grid-row: 6 / span 6;
}

.mosaic-tile-sewing {
  grid-column: 5 / span 5;
  grid-row: 8 / span 8;
}

.mosaic-tile-detail {
  grid-column: 10 / span 3;
  grid-row: 9 / span 5;
}

.mosaic-quote {
  position: relative;
  z-index: 3;
  grid-column: 1 / span 4;
  grid-row: 13 / span 4;
  align-self: center;
  padding: clamp(24px, 3vw, 42px);
  border-left: 1px solid #b89d6b;
  background: rgba(238, 233, 223, .94);
  box-shadow: 0 18px 50px rgba(66, 54, 36, .08);
}

.mosaic-quote span {
  position: absolute;
  top: -18px;
  left: 20px;
  color: rgba(126, 99, 50, .22);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.mosaic-quote p {
  position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.16;
}

.mosaic-tile-fashion {
  grid-column: 9 / span 4;
  grid-row: 15 / span 7;
}

.mosaic-tile-finish {
  grid-column: 1 / span 3;
  grid-row: 18 / span 5;
}

.mosaic-tile-studio {
  grid-column: 4 / span 4;
  grid-row: 17 / span 6;
}

.mosaic-tile-house {
  grid-column: 3 / span 8;
  grid-row: 24 / span 6;
  min-height: clamp(260px, 32vw, 500px);
}

.mosaic-gallery {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  margin: 20px calc(clamp(18px, 4vw, 64px) * -1) 0;
}

.expertise-mosaic {
  grid-template-rows: auto auto;
  grid-auto-rows: auto;
}

.expertise-mosaic .mosaic-intro {
  grid-column: 2 / span 6;
  grid-row: 1;
}

.expertise-mosaic .mosaic-quote {
  grid-column: 8 / span 4;
  grid-row: 1;
  margin-left: clamp(12px, 2vw, 34px);
}

.mosaic-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  padding: 44px clamp(52px, 7vw, 110px) 64px;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(52px, 7vw, 110px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.mosaic-track::-webkit-scrollbar {
  display: none;
}

.mosaic-track:active {
  cursor: grabbing;
}

.mosaic-track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.mosaic-track.is-dragging .mosaic-tile {
  pointer-events: none;
}

.mosaic-track .mosaic-tile {
  flex: 0 0 clamp(280px, 28vw, 390px);
  width: clamp(280px, 28vw, 390px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  grid-column: auto;
  grid-row: auto;
  scroll-snap-align: start;
}

.mosaic-track .mosaic-tile-house {
  min-height: 0;
}

.mosaic-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .15);
  border-radius: 50%;
  background: rgba(248, 245, 239, .94);
  color: var(--black);
  box-shadow: 0 14px 35px rgba(42, 34, 22, .16);
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .25s ease, background-color .25s ease, transform .25s ease;
}

.mosaic-arrow:hover,
.mosaic-arrow:focus-visible {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.mosaic-arrow:disabled {
  opacity: .25;
  cursor: default;
  transform: translateY(-50%);
}

.mosaic-arrow-prev {
  left: clamp(10px, 2vw, 28px);
}

.mosaic-arrow-next {
  right: clamp(10px, 2vw, 28px);
}

.expertise-item {
  position: relative;
  min-height: 250px;
  padding: clamp(30px, 3vw, 42px) clamp(24px, 2.5vw, 34px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: color .35s ease, background-color .35s ease, transform .35s ease;
}

.expertise-item::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(184, 157, 107, .28);
  border-radius: 50%;
  transition: transform .5s ease, background-color .5s ease;
}

.expertise-item:hover {
  color: var(--white);
  background: #1d1f1d;
  transform: translateY(-8px);
}

.expertise-item:hover::before {
  background: rgba(184, 157, 107, .12);
  transform: scale(1.35);
}

.expertise-item p {
  margin-top: 18px;
  color: var(--soft);
  transition: color .35s ease;
}

.expertise-item:hover p {
  color: rgba(255, 255, 255, .62);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--black);
}

.timeline div {
  min-width: 0;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline b {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
}

.timeline span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.05;
}

.sustainability {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

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

.certificate-logo {
  display: grid;
  min-height: 128px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .12);
  background: #fff;
  padding: clamp(18px, 2vw, 26px);
  box-shadow: 0 18px 42px rgba(17, 17, 17, .06);
}

.certificate-logo-tall {
  min-height: 170px;
}

.certificate-logo img {
  width: 100%;
  max-width: 210px;
  max-height: 112px;
  object-fit: contain;
}

.certificate-logo-tall img {
  max-width: 150px;
  max-height: 150px;
}

.certificate-logo-center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 230px);
}

.numbers {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.number {
  min-width: 0;
  padding: 40px 20px;
}

.number strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.number span {
  display: block;
  margin-top: 12px;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(26px, 4vw, 46px);
  background: #ede7dd;
  color: var(--black);
}

.contact-title {
  margin: 0 0 clamp(8px, 2vw, 24px);
  color: #8f7446;
  text-align: center;
}

.contact-card {
  width: min(100%, 820px);
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid rgba(17, 17, 17, .14);
  text-align: center;
}

.contact-card h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 58px);
}

.contact-card p:not(.section-label),
.contact-card a {
  display: block;
  margin-top: 18px;
  color: #5f5a52;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--black);
}

.contact-form {
  width: 100%;
  max-width: 900px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #5d554a;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .24);
  border-radius: 0;
  padding: 12px 0 13px;
  background: transparent;
  color: var(--black);
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 108px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form option {
  color: var(--black);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(17, 17, 17, .38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #8f7446;
  background: transparent;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #b42318;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.field-error.is-visible {
  display: block;
}

.form-full,
.file-field,
.consent-field {
  grid-column: 1 / -1;
}

.file-field input {
  cursor: pointer;
}

.file-field input::file-selector-button {
  margin-right: 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  padding: 8px 12px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form .consent-field {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #625a50;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: lowercase;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--gold);
}

.consent-field .field-error {
  flex: 0 0 100%;
  margin-left: 28px;
}

.form-submit {
  margin-top: 24px;
  border: 1px solid var(--black);
  padding: 14px 24px;
  background: transparent;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--black);
  color: var(--white);
}

.whatsapp-sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(37, 211, 102, .45);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  background: rgba(37, 211, 102, .1);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}

.whatsapp-sticker:hover,
.whatsapp-sticker:focus-visible {
  background: rgba(37, 211, 102, .18);
  transform: translateY(-2px);
}

.whatsapp-sticker svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.whatsapp-sticker svg path:first-child {
  fill: #25d366;
}

.whatsapp-sticker svg path:last-child {
  fill: #fff;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.footer img {
  width: 70px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

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

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .partner-track {
    width: 100%;
    flex-wrap: wrap;
    animation: none;
  }

  .partner-list[aria-hidden="true"] {
    display: none;
  }

  .partner-list {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .mosaic-tile {
    --parallax-y: 0px !important;
    --tile-parallax-y: 0px !important;
    --tile-scale: 1;
    --parallax-scale: 1;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .mosaic-tile img {
    top: 0;
    height: 100%;
    will-change: auto;
  }
}

@media (max-width: 1180px) {
  .collection-grid,
  .expertise-grid,
  .numbers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card {
    min-height: 480px;
  }

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

  .timeline div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    gap: 12px;
  }

  .site-header .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    order: 3;
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .3s ease;
  }

  .nav.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 18px clamp(20px, 5vw, 72px);
    border-top: 1px solid rgba(0, 0, 0, .06);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    background:
      linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .84)),
      url("../img/hero-showroom-user-2.jpg") center / cover no-repeat;
  }

  .split-section,
  .contact,
  .vision-mission,
  .sustainability {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .expertise .section-head h2 {
    white-space: normal;
  }

  .expertise-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(27, 56px);
    grid-auto-rows: 56px;
    padding-inline: clamp(18px, 4vw, 42px);
  }

  .mosaic-intro {
    grid-column: 1 / span 5;
    grid-row: 1 / span 4;
  }

  .mosaic-tile-pattern {
    grid-column: 3 / span 4;
    grid-row: 5 / span 6;
  }

  .mosaic-tile-thread {
    grid-column: 1 / span 2;
    grid-row: 7 / span 5;
  }

  .mosaic-tile-sewing {
    grid-column: 1 / span 4;
    grid-row: 12 / span 7;
  }

  .mosaic-tile-detail {
    grid-column: 5 / span 2;
    grid-row: 12 / span 5;
  }

  .mosaic-quote {
    grid-column: 1 / span 4;
    grid-row: 20 / span 3;
  }

  .mosaic-tile-fashion {
    grid-column: 4 / span 3;
    grid-row: 18 / span 7;
  }

  .mosaic-tile-finish {
    grid-column: 1 / span 2;
    grid-row: 24 / span 5;
  }

  .mosaic-tile-studio {
    grid-column: 3 / span 4;
    grid-row: 26 / span 6;
  }

  .mosaic-tile-house {
    grid-column: 2 / span 4;
    grid-row: 33 / span 6;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 16px;
    background: rgba(255, 255, 255, .94);
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header .language-switcher {
    gap: 5px;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    letter-spacing: .06em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-color: rgba(17, 17, 17, .1);
  }

  .nav {
    max-height: calc(100svh - var(--header-height));
    background: rgba(248, 246, 241, .98);
    box-shadow: 0 22px 45px rgba(17, 17, 17, .12);
  }

  .nav.open {
    max-height: calc(100svh - var(--header-height));
  }

  .nav a {
    padding: 17px 20px;
    font-size: 12px;
  }

  .section-padding {
    padding: 64px 18px;
  }

  .hero {
    min-height: 88svh;
    align-items: end;
    padding: calc(var(--header-height) + 34px) 18px 42px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .72) 48%, rgba(255, 255, 255, .96) 100%),
      url("../img/hero-showroom-user-2.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .17em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(33px, 9.5vw, 42px);
    line-height: .98;
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .split-section {
    gap: 28px;
  }

  #about .about-section-label {
    font-size: 16px;
    letter-spacing: .12em;
  }

  .image-panel {
    min-height: min(112vw, 460px);
  }

  .text-panel p:not(.section-label) {
    margin-top: 16px;
    font-size: 15px;
  }

  .vision-mission {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 14px;
  }

  .statement-block {
    padding-top: 20px;
  }

  .statement-block p {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.42;
  }

  .partner-strip {
    margin: 18px 0 34px;
  }

  .partner-title {
    padding-top: 20px;
    font-size: 11px;
  }

  .partner-list {
    gap: 34px;
    padding: 20px 24px;
    font-size: 25px;
  }

  .partner-list span::after {
    margin-left: 34px;
  }

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

  .collections-section .section-head h2,
  .expertise .section-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .collection-grid {
    display: flex;
    width: calc(100% + 18px);
    gap: 14px;
    overflow-x: auto;
    margin-right: -18px;
    padding: 2px 18px 22px 0;
    border: 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    width: min(82vw, 340px);
    min-width: min(82vw, 340px);
    min-height: 0;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .collection-card:hover {
    transform: none;
  }

  .collection-card img {
    aspect-ratio: 4 / 5;
  }

  .collection-card div {
    min-height: 190px;
    padding: 22px;
  }

  .collection-card h3 {
    margin-top: 26px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expertise-item {
    min-height: 0;
    padding: 26px 22px;
  }

  .expertise-item:hover {
    transform: none;
  }

  .expertise-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 12px;
    margin: 44px -18px 20px;
    padding: 44px 14px 18px;
  }

  .mosaic-intro {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 0;
    margin: 0 4px 18px;
    padding: 22px 18px;
  }

  .mosaic-intro h3 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .mosaic-intro > p:last-child {
    margin-top: 16px;
    font-size: 13px;
  }

  .mosaic-word {
    top: 5%;
    right: -8%;
    font-size: 96px;
    opacity: .65;
  }

  .mosaic-tile {
    width: 100%;
    min-height: 0;
    aspect-ratio: 3 / 4;
    --parallax-y: 0px !important;
    --tile-parallax-y: 0px !important;
    --tile-scale: 1 !important;
    --parallax-scale: 1.04 !important;
    transform: none;
    will-change: auto;
  }

  .mosaic-tile img {
    top: 0;
    height: 100%;
    transform: scale(1.04);
    will-change: auto;
  }

  .mosaic-tile-pattern,
  .mosaic-tile-thread,
  .mosaic-tile-sewing,
  .mosaic-tile-detail,
  .mosaic-tile-fashion,
  .mosaic-tile-finish,
  .mosaic-tile-studio {
    grid-column: auto;
    grid-row: auto;
  }

  .mosaic-tile-pattern,
  .mosaic-tile-sewing,
  .mosaic-tile-fashion,
  .mosaic-tile-studio {
    aspect-ratio: 4 / 5;
  }

  .mosaic-quote {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 5;
    margin: 16px 4px;
    padding: 28px 20px;
  }

  .mosaic-quote p {
    font-size: 26px;
  }

  .mosaic-tile-pattern { order: 1; }
  .mosaic-tile-thread { order: 2; }
  .mosaic-tile-sewing { order: 3; }
  .mosaic-tile-detail { order: 4; }
  .mosaic-tile-fashion { order: 6; }
  .mosaic-tile-finish { order: 7; }
  .mosaic-tile-studio { order: 8; }
  .mosaic-tile-house {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 9;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .process.section-padding {
    padding-top: 54px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .timeline div {
    min-height: 120px;
    padding: 22px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .sustainability {
    gap: 32px;
  }

  .certificates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .certificate-logo,
  .certificate-logo-tall {
    min-height: 126px;
    padding: 14px;
  }

  .certificate-logo-center {
    grid-column: 1 / -1;
    width: 50%;
  }

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

  .number {
    min-height: 150px;
    padding: 28px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .number strong {
    font-size: 48px;
  }

  .number span {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .contact {
    gap: 32px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form .consent-field {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    margin-top: 10px;
    font-size: 11px;
  }

  .consent-field .field-error {
    grid-column: 2;
    margin-left: 0;
  }

  .form-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 18px;
  }

  .whatsapp-sticker {
    justify-content: center;
    width: 100%;
  }

  .contact-card {
    padding-top: 28px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .contact-card a {
    overflow-wrap: anywhere;
  }

  .footer {
    flex-direction: column;
    padding: 32px 18px;
    text-align: center;
  }

  .split-section.section-padding {
    padding-top: 48px;
  }
}

@media (max-width: 420px) {
  .eyebrow,
  .section-label,
  .btn,
  .nav {
    letter-spacing: .1em;
  }

  .hero-text {
    margin-bottom: 28px;
  }

  .number {
    padding-inline: 16px;
  }

  .mosaic-tile {
    aspect-ratio: 3 / 4.4;
  }

  .mosaic-tile-house {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 980px) {
  .expertise-mosaic {
    grid-template-rows: auto auto;
    grid-auto-rows: auto;
  }

  .expertise-mosaic .mosaic-intro {
    grid-column: 1 / span 3;
    grid-row: 1;
  }

  .expertise-mosaic .mosaic-quote {
    grid-column: 4 / span 3;
    grid-row: 1;
  }

  .mosaic-gallery {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .mosaic-track .mosaic-tile,
  .mosaic-track .mosaic-tile-house {
    grid-column: auto;
    grid-row: auto;
    width: clamp(270px, 42vw, 360px);
    flex-basis: clamp(270px, 42vw, 360px);
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 680px) {
  .expertise-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }

  .expertise-mosaic .mosaic-intro {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .expertise-mosaic .mosaic-quote {
    grid-column: 1;
    grid-row: 2;
    margin: 0 4px;
  }

  .mosaic-gallery {
    grid-column: 1;
    grid-row: 3;
    margin: 0 -14px;
  }

  .mosaic-track {
    gap: 12px;
    padding: 18px 14px 30px;
    cursor: auto;
    scroll-padding-inline: 14px;
  }

  .mosaic-track .mosaic-tile,
  .mosaic-track .mosaic-tile-house {
    width: min(78vw, 320px);
    flex-basis: min(78vw, 320px);
    aspect-ratio: 4 / 5;
  }

  .mosaic-arrow {
    display: none;
  }
}
