:root {
  --background: #f5f5f3;
  --accent: #706250;
  --accent-dark: #514638;
  --accent-light: #b59b7f;
  --ink: #201f1c;
  --white: #fafaf8;
  --header-height: 72px;
  color: var(--ink);
  background: var(--background);
  font-family: "Montserrat", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  background: var(--background);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  width: min(1500px, calc(100% - 48px));
  min-height: var(--header-height);
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(112, 98, 80, 0.14);
  border-radius: 4px;
  background: rgba(245, 245, 243, 0.82);
  box-shadow: 0 12px 40px rgba(35, 30, 25, 0.07);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    top 300ms ease,
    width 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1440px, calc(100% - 32px));
  background: rgba(245, 245, 243, 0.94);
  box-shadow: 0 12px 42px rgba(35, 30, 25, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.7vw, 32px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.desktop-nav a,
.icon-link {
  position: relative;
  transition: color 200ms ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 11px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.icon-link svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.icon-link:hover,
.icon-link:focus-visible {
  color: var(--accent);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.language-toggle span:not(.language-divider) {
  opacity: 0.38;
}

.language-toggle span.is-active {
  opacity: 1;
}

.language-divider {
  width: 1px;
  height: 11px;
  background: currentColor;
  opacity: 0.28;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 250ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 124px 32px 34px;
  background: rgba(245, 245, 243, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(112, 98, 80, 0.16);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(26px, 7vw, 42px);
}

.mobile-menu-footer {
  display: flex;
  gap: 28px;
  color: var(--accent);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: #d8d4ce;
  isolation: isolate;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  z-index: -3;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 7s linear;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, 0.94) 0%, rgba(245, 245, 243, 0.78) 27%, rgba(245, 245, 243, 0.12) 52%, transparent 72%),
    linear-gradient(180deg, rgba(25, 23, 20, 0.05), transparent 24%, rgba(25, 23, 20, 0.08));
  transition: background 600ms ease;
}

.hero.is-dark .hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 15, 13, 0.78) 0%, rgba(17, 15, 13, 0.52) 29%, rgba(17, 15, 13, 0.08) 53%, transparent 74%),
    linear-gradient(180deg, rgba(17, 15, 13, 0.1), transparent 45%, rgba(17, 15, 13, 0.2));
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(5.6vw, 48px);
  width: min(620px, 42vw);
  color: var(--ink);
  transform: translateY(-44%);
  transition: color 600ms ease;
}

.hero.is-dark .hero-content {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero.is-dark .eyebrow {
  color: var(--accent-light);
}

.hero-copy {
  min-height: 246px;
}

.hero-copy h1 {
  max-width: 600px;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(46px, 4.4vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 530px;
  margin: 28px 0 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 300;
  line-height: 1.7;
}

.hero-copy.is-changing h1,
.hero-copy.is-changing p {
  animation: copy-in 700ms both;
}

.hero-copy.is-changing p {
  animation-delay: 70ms;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  font-size: 12px;
  font-weight: 500;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  gap: 24px;
  color: var(--white);
  background: var(--accent);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-dark);
}

.button--primary svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.button--secondary {
  color: var(--accent);
  background: rgba(245, 245, 243, 0.2);
  backdrop-filter: blur(6px);
}

.hero.is-dark .button--primary {
  border-color: var(--accent-light);
  color: #171410;
  background: var(--accent-light);
}

.hero.is-dark .button--secondary {
  border-color: rgba(250, 250, 248, 0.62);
  color: var(--white);
  background: rgba(17, 15, 13, 0.18);
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: max(4vw, 36px);
  bottom: 42px;
  left: max(5.6vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  transition: color 600ms ease;
}

.hero.is-dark .slider-controls {
  color: var(--white);
}

.counter {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.counter-line {
  position: relative;
  display: block;
  width: 76px;
  height: 1px;
  overflow: hidden;
  background: currentColor;
  opacity: 0.42;
}

.counter-line i {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.counter-line i.is-running {
  animation: progress 7s linear forwards;
}

@keyframes progress {
  to {
    transform: scaleX(1);
  }
}

.arrow-buttons {
  display: flex;
  gap: 8px;
}

.arrow-buttons button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(245, 245, 243, 0.18);
  cursor: pointer;
  transition:
    background 200ms ease,
    color 200ms ease;
}

.arrow-buttons button:hover,
.arrow-buttons button:focus-visible {
  color: var(--white);
  background: var(--accent);
}

.arrow-buttons svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.slide-dots {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.slide-dot {
  position: relative;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slide-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(20, 18, 16, 0.22);
  content: "";
  transform: translate(-50%, -50%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.slide-dot.is-active::before {
  box-shadow:
    0 0 0 1px var(--white),
    0 0 0 5px rgba(112, 98, 80, 0.7);
  transform: translate(-50%, -50%) scale(1.2);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 50%;
  margin: 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.gallery-section {
  position: relative;
  padding: 112px max(4vw, 36px) 140px;
  background: var(--background);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 72px;
  gap: 8vw;
}

.gallery-heading .eyebrow {
  margin-bottom: 20px;
}

.gallery-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(44px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.gallery-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(32, 31, 28, 0.68);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.gallery-filter-shell {
  position: sticky;
  z-index: 20;
  top: 94px;
  max-width: 1440px;
  margin: 0 auto 32px;
  pointer-events: none;
}

.gallery-filters {
  display: flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px;
  overflow-x: auto;
  border: 1px solid rgba(112, 98, 80, 0.12);
  border-radius: 3px;
  background: rgba(245, 245, 243, 0.88);
  box-shadow: 0 12px 36px rgba(35, 30, 25, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 200ms ease,
    background 200ms ease;
}

.gallery-filters button span {
  font-size: 8px;
  font-weight: 400;
  opacity: 0.5;
}

.gallery-filters button:hover,
.gallery-filters button:focus-visible {
  color: var(--accent);
}

.gallery-filters button.is-active {
  color: var(--white);
  background: var(--accent);
}

.gallery-grid {
  max-width: 1440px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 15px;
}

.gallery-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 15px;
  overflow: hidden;
  border-radius: 12px;
  break-inside: avoid;
  background: #dedbd5;
  cursor: pointer;
  vertical-align: top;
  animation: gallery-card-in 520ms both;
}

.gallery-card[hidden] {
  display: none;
}

@keyframes gallery-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.3, 1);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.025);
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: 54px auto 0;
  gap: 8px;
}

.gallery-pagination[hidden] {
  display: none;
}

.gallery-pagination button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(112, 98, 80, 0.24);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.gallery-pagination button:hover,
.gallery-pagination button:focus-visible,
.gallery-pagination button.is-active {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.section-anchor {
  display: block;
  scroll-margin-top: 110px;
}

.works-carousel-section {
  padding: 104px max(4vw, 36px) 72px;
  overflow: hidden;
  background: var(--background);
  scroll-margin-top: 100px;
}

.works-carousel-section--new {
  padding-top: 116px;
  padding-bottom: 130px;
}

.works-carousel-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.55fr);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 42px;
  gap: 8vw;
}

.works-carousel-heading .eyebrow {
  margin-bottom: 16px;
}

.works-carousel-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.works-carousel-heading > p {
  max-width: 480px;
  margin: 0 0 6px;
  color: rgba(32, 31, 28, 0.62);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.works-carousel-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.works-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.works-carousel::-webkit-scrollbar {
  display: none;
}

.works-card {
  position: relative;
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: #ddd8d0;
  scroll-snap-align: start;
}

.works-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.6, 0.3, 1);
}

.works-card:hover > img {
  transform: scale(1.025);
}

.works-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  gap: 7px;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 18, 16, 0.68));
  opacity: 0;
  transition: opacity 220ms ease;
}

.works-card:hover .works-card-overlay,
.works-card:focus-within .works-card-overlay {
  opacity: 1;
}

.works-card-overlay button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(250, 250, 248, 0.7);
  color: var(--white);
  background: rgba(20, 18, 16, 0.24);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 9px;
}

.works-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.works-carousel-progress {
  width: min(340px, 40vw);
  height: 1px;
  overflow: hidden;
  background: rgba(112, 98, 80, 0.2);
}

.works-carousel-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--accent);
  transform: translateX(0);
  transition:
    width 250ms ease,
    transform 250ms ease;
}

.works-carousel-arrows {
  display: flex;
  gap: 8px;
}

.works-carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(112, 98, 80, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.collection-cta {
  padding: 30px max(4vw, 36px) 20px;
  background: var(--background);
}

.collection-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(500px, 1.2fr);
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 48%, rgba(181, 155, 127, 0.15), transparent 34%),
    linear-gradient(135deg, #292520, #171512);
  box-shadow: 0 30px 90px rgba(38, 31, 24, 0.16);
}

.collection-cta-inner::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 34px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
}

.collection-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 20px 72px clamp(48px, 5vw, 84px);
}

.collection-copy .eyebrow {
  margin-bottom: 22px;
  color: var(--accent-light);
}

.collection-copy h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.collection-intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(250, 250, 248, 0.7);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.collection-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0 0;
  padding: 0;
  gap: 15px 26px;
  list-style: none;
}

.collection-benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(250, 250, 248, 0.76);
  font-size: 10px;
  line-height: 1.55;
}

.collection-benefits li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--accent-light);
  content: "";
}

.collection-button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: space-between;
  min-width: 228px;
  min-height: 54px;
  margin-top: 38px;
  padding: 0 20px;
  color: #1c1915;
  background: var(--accent-light);
  font-size: 10px;
  font-weight: 500;
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.collection-button:hover,
.collection-button:focus-visible {
  background: #c7ad91;
  transform: translateY(-2px);
}

.collection-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.collection-stage {
  position: relative;
  min-height: 720px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.collection-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(181, 155, 127, 0.13);
  filter: blur(70px);
  transform: translate(-46%, -48%);
}

.collection-print {
  --base-x: 0px;
  --base-y: 0px;
  --base-rotate: 0deg;
  --layer-x: 0px;
  --layer-y: 0px;
  --layer-z: 54px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(230px, 23vw, 350px);
  margin: 0;
  padding: 9px;
  border-radius: 3px;
  background: #e7e1d8;
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.34),
    0 3px 10px rgba(0, 0, 0, 0.24);
  transform:
    translate(-50%, -50%)
    translate3d(
      calc(var(--base-x) + var(--layer-x)),
      calc(var(--base-y) + var(--layer-y)),
      var(--layer-z)
    )
    rotate(var(--base-rotate));
  transition:
    filter 500ms ease,
    opacity 500ms ease;
  will-change: transform;
}

.collection-print img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-print--back {
  --base-x: 20px;
  --base-y: -178px;
  --base-rotate: 7deg;
  --layer-z: 12px;
  width: clamp(210px, 20vw, 310px);
  filter: blur(2.4px) saturate(0.72);
  opacity: 0.48;
}

.collection-print--left {
  --base-x: -202px;
  --base-y: -70px;
  --base-rotate: -10deg;
  --layer-z: 28px;
  filter: blur(1.3px) saturate(0.82);
  opacity: 0.72;
}

.collection-print--right {
  --base-x: 206px;
  --base-y: -42px;
  --base-rotate: 9deg;
  --layer-z: 42px;
  filter: blur(0.7px) saturate(0.9);
  opacity: 0.86;
}

.collection-print--middle {
  --base-x: -104px;
  --base-y: 130px;
  --base-rotate: -4deg;
  --layer-z: 58px;
}

.collection-print--front {
  --base-x: 105px;
  --base-y: 118px;
  --base-rotate: 3deg;
  --layer-z: 78px;
  width: clamp(260px, 26vw, 390px);
}

.collection-caption {
  position: absolute;
  right: 38px;
  bottom: 30px;
  margin: 0;
  color: rgba(250, 250, 248, 0.42);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 19, 16, 0.72);
  backdrop-filter: blur(10px);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(112, 98, 80, 0.22);
  border-radius: 50%;
  background: rgba(245, 245, 243, 0.88);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.detail-modal {
  position: relative;
  width: min(1120px, 96vw);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  background: var(--background);
  box-shadow: 0 28px 90px rgba(15, 13, 11, 0.32);
  transform: translateY(18px);
  transition: transform 300ms ease;
}

.modal.is-open .detail-modal,
.modal.is-open .order-modal {
  transform: translateY(0);
}

.detail-media {
  padding: 28px 28px 0;
  background: #1c1a17;
}

.detail-visual {
  position: relative;
  line-height: 0;
  background: #1c1a17;
}

.detail-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
}

.detail-original {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(250, 250, 248, 0.62);
  border-radius: 6px;
  color: var(--white);
  background: rgba(20, 18, 16, 0.54);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 9px;
}

.detail-content {
  padding: 56px max(5vw, 48px) 54px;
}

.detail-content h2,
.order-modal h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-description {
  margin: 26px 0 30px;
  color: rgba(32, 31, 28, 0.72);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(112, 98, 80, 0.18);
  border-bottom: 1px solid rgba(112, 98, 80, 0.18);
}

.detail-meta div {
  display: grid;
  gap: 6px;
}

.detail-meta dt {
  color: rgba(32, 31, 28, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-meta dd {
  margin: 0;
  font-size: 12px;
}

.detail-sizes {
  margin-top: 34px;
}

.detail-sizes h3 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
}

.interior-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 0 24px;
}

.interior-preview {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(250, 250, 248, 0.14);
  border-radius: 8px;
  background: #2a2723;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    opacity 180ms ease;
}

.interior-preview.is-selected {
  border-color: var(--accent-light);
}

.interior-preview:hover {
  opacity: 0.88;
}

.interior-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.interior-preview-label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(20, 18, 16, 0.62);
  backdrop-filter: blur(8px);
  font-size: 10px;
}

.format-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 0;
}

.format-option {
  position: relative;
  display: grid;
  min-height: 96px;
  padding: 15px;
  border: 1px solid transparent;
  background: #ebe8e2;
  cursor: pointer;
  text-align: left;
}

.format-option.is-selected {
  border-color: var(--accent);
}

.format-option::before,
.format-option::after {
  position: absolute;
  width: 13px;
  height: 13px;
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.format-option::before {
  top: 7px;
  left: 7px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.format-option::after {
  right: 7px;
  bottom: 7px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.format-option.is-selected::before,
.format-option.is-selected::after {
  opacity: 1;
}

.format-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.format-option-head strong {
  font-weight: 500;
}

.format-option small {
  align-self: end;
  color: rgba(32, 31, 28, 0.58);
  font-size: 11px;
}

.detail-order-button,
.room-button {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  border: 1px solid var(--accent);
  cursor: pointer;
  font-size: 11px;
}

.detail-order-button {
  position: relative;
  margin-top: 24px;
  color: var(--accent);
  background: transparent;
}

.detail-order-button::before {
  position: absolute;
  bottom: 100%;
  left: var(--order-line-x, 50%);
  width: 1px;
  height: 24px;
  background: var(--accent);
  content: "";
  transform: translateX(-50%);
  transition: left 240ms ease;
}

.room-button {
  color: var(--white);
  background: var(--accent);
}

.room-auth {
  margin-top: 14px;
  padding: 22px;
  color: rgba(32, 31, 28, 0.72);
  background: #ebe8e2;
  font-size: 12px;
  line-height: 1.6;
}

.room-auth p {
  margin: 0 0 8px;
}

.room-upload,
.room-phone {
  display: grid;
  margin-top: 14px;
  gap: 7px;
}

.room-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.room-upload span,
.room-phone input,
.room-auth button {
  min-height: 48px;
  border: 1px solid rgba(112, 98, 80, 0.3);
  background: var(--background);
}

.room-upload span {
  display: grid;
  padding: 0 16px;
  place-items: center;
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
}

.room-phone span {
  color: rgba(32, 31, 28, 0.56);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-phone input {
  width: 100%;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.room-auth button {
  width: 100%;
  margin-top: 12px;
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
  cursor: pointer;
  font-size: 11px;
}

.room-status {
  min-height: 1.5em;
  margin: 10px 0 0 !important;
  color: var(--accent);
  font-size: 10px;
}

.order-modal {
  position: relative;
  width: min(540px, calc(100vw - 32px));
  padding: 50px;
  background: var(--background);
  box-shadow: 0 28px 90px rgba(15, 13, 11, 0.32);
  transform: translateY(18px);
  transition: transform 300ms ease;
}

.order-modal .eyebrow {
  margin-bottom: 18px;
}

.order-work {
  margin: 14px 0 28px;
  color: rgba(32, 31, 28, 0.6);
  font-size: 11px;
}

.order-options {
  display: grid;
  gap: 8px;
}

.order-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 70px;
  padding: 12px 16px;
  border: 1px solid rgba(112, 98, 80, 0.2);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.order-option.is-selected {
  border-color: var(--accent);
  background: rgba(112, 98, 80, 0.07);
}

.order-option > strong {
  font-size: 18px;
  font-weight: 400;
}

.order-option span {
  color: rgba(32, 31, 28, 0.58);
  font-size: 10px;
}

.order-option b {
  font-size: 13px;
  font-weight: 500;
}

.order-continue {
  width: 100%;
  margin-top: 22px;
}

.page-anchors {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 130px minmax(0, 1fr) auto;
  }

  .desktop-nav {
    gap: 16px;
    font-size: 11px;
  }

  .favorites-link span,
  .whatsapp-link span {
    display: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .favorites-link,
  .whatsapp-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    width: min(600px, 56vw);
  }

  .gallery-grid {
    column-count: 2;
  }

  .detail-content {
    padding-inline: 34px;
  }

  .collection-cta-inner {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    padding: 68px 56px 20px;
  }

  .collection-stage {
    min-height: 620px;
  }

  .collection-print {
    width: clamp(230px, 38vw, 340px);
  }

  .collection-print--back {
    width: clamp(210px, 34vw, 300px);
  }

  .collection-print--front {
    width: clamp(260px, 42vw, 380px);
  }

  .works-card {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 6px 7px 6px 14px;
  }

  .site-header.is-scrolled {
    top: 6px;
    width: calc(100% - 12px);
  }

  .brand {
    width: 96px;
  }

  .header-actions {
    gap: 5px;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: clamp(560px, 72svh, 660px);
    padding-bottom: 88px;
    overflow: hidden;
    background: #201d19;
  }

  .slides,
  .slide,
  .hero-shade {
    top: 0;
    bottom: auto;
    height: clamp(560px, 72svh, 660px);
  }

  .slide img {
    object-position: center center;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.2, 0.55, 0.3, 1);
    will-change: transform;
  }

  .slide.is-zooming img {
    transform: scale(1.075);
  }

  .slide:nth-child(1) img {
    object-position: center 42%;
  }

  .slide:nth-child(2) img {
    object-position: center 54%;
  }

  .slide:nth-child(3) img,
  .slide:nth-child(4) img {
    object-position: center 48%;
  }

  .hero-shade,
  .hero.is-dark .hero-shade {
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.04), transparent 78%, rgba(20, 18, 16, 0.18));
  }

  .hero-content,
  .hero.is-dark .hero-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    width: auto;
    margin-top: -172px;
    padding: 106px 20px 26px;
    color: var(--white);
    transform: none;
  }

  .hero-content::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(31, 28, 24, 0) 0%,
        rgba(31, 28, 24, 0.48) 28%,
        rgba(31, 28, 24, 0.88) 58%,
        #201d19 100%
      );
    -webkit-backdrop-filter: blur(13px) saturate(0.88);
    backdrop-filter: blur(13px) saturate(0.88);
    content: "";
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 30%, #000 52%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 30%, #000 52%);
    pointer-events: none;
  }

  .eyebrow,
  .hero.is-dark .eyebrow {
    margin-bottom: 16px;
    color: var(--accent-light);
    font-size: 8px;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.09;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .button--primary,
  .hero.is-dark .button--primary {
    border-color: var(--accent-light);
    color: #171410;
    background: var(--accent-light);
  }

  .button--secondary,
  .hero.is-dark .button--secondary {
    border-color: rgba(250, 250, 248, 0.55);
    color: var(--white);
    background: transparent;
  }

  .slider-controls {
    right: 20px;
    bottom: 20px;
    left: 20px;
    color: var(--white);
  }

  .arrow-buttons button {
    width: 42px;
    height: 42px;
  }

  .slide-dots,
  .scroll-cue {
    display: none;
  }

  .gallery-section {
    padding: 76px 10px 90px;
  }

  .gallery-heading {
    display: block;
    margin: 0 10px 42px;
  }

  .gallery-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .gallery-heading > p {
    margin-top: 20px;
    font-size: 12px;
    line-height: 1.7;
  }

  .gallery-filter-shell {
    top: 76px;
    margin-bottom: 12px;
  }

  .gallery-filters {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .gallery-filters button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 6px;
  }

  .gallery-card {
    margin-bottom: 6px;
    border-radius: 9px;
  }

  .gallery-pagination {
    margin-top: 34px;
  }

  .works-carousel-section,
  .works-carousel-section--new {
    padding: 74px 0 66px;
  }

  .works-carousel-heading {
    display: block;
    margin: 0 20px 30px;
  }

  .works-carousel-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .works-carousel-heading > p {
    margin-top: 16px;
    font-size: 11px;
  }

  .works-carousel {
    padding: 0 20px;
    gap: 10px;
    scroll-padding-inline: 20px;
  }

  .works-card {
    flex-basis: 82%;
    border-radius: 10px;
  }

  .works-card-overlay {
    padding: 10px;
    opacity: 1;
  }

  .works-card-overlay button {
    min-height: 38px;
    font-size: 9px;
  }

  .works-carousel-controls {
    margin: 16px 20px 0;
  }

  .works-carousel-progress {
    width: 58%;
  }

  .works-carousel-arrows {
    display: none;
  }

  .collection-cta {
    padding: 18px 10px 84px;
  }

  .collection-cta-inner {
    min-height: 0;
    border-radius: 14px;
  }

  .collection-copy {
    padding: 52px 20px 10px;
  }

  .collection-copy h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .collection-intro {
    margin-top: 22px;
    font-size: 12px;
  }

  .collection-benefits {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 11px;
  }

  .collection-benefits li {
    font-size: 9px;
  }

  .collection-button {
    width: 100%;
    margin-top: 30px;
  }

  .collection-stage {
    min-height: 480px;
    overflow: hidden;
  }

  .collection-print {
    width: min(55vw, 230px);
    padding: 6px;
  }

  .collection-print--back {
    --base-x: 10px;
    --base-y: -116px;
    width: min(48vw, 200px);
  }

  .collection-print--left {
    --base-x: -105px;
    --base-y: -44px;
  }

  .collection-print--right {
    --base-x: 108px;
    --base-y: -26px;
  }

  .collection-print--middle {
    --base-x: -64px;
    --base-y: 94px;
  }

  .collection-print--front {
    --base-x: 60px;
    --base-y: 88px;
    width: min(63vw, 264px);
  }

  .collection-caption {
    right: 18px;
    bottom: 16px;
  }

  .modal {
    padding: 0;
    align-items: end;
  }

  .detail-modal {
    width: 100%;
    max-height: 94svh;
    border-radius: 14px 14px 0 0;
  }

  .detail-media {
    padding: 12px 12px 0;
  }

  .detail-visual {
    min-height: 0;
  }

  .detail-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
  }

  .detail-content {
    padding: 38px 20px 30px;
  }

  .detail-content h2,
  .order-modal h2 {
    font-size: 34px;
  }

  .detail-description {
    margin-block: 18px 22px;
    font-size: 12px;
  }

  .interior-previews {
    gap: 6px;
    padding-block: 10px 14px;
  }

  .interior-preview {
    border-radius: 6px;
  }

  .format-options {
    gap: 5px;
  }

  .format-option {
    min-height: 102px;
    padding: 14px 10px;
  }

  .format-option-head {
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
  }

  .format-option small {
    font-size: 10px;
  }

  .order-modal {
    width: 100%;
    padding: 42px 20px 24px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .language-toggle {
    padding-inline: 4px;
  }

  .hero {
    padding-top: clamp(520px, 68svh, 610px);
    padding-bottom: 82px;
  }

  .slides,
  .slide,
  .hero-shade {
    height: clamp(520px, 68svh, 610px);
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 12px;
  }

  .hero-content,
  .hero.is-dark .hero-content {
    margin-top: -164px;
    padding-top: 98px;
    padding-bottom: 22px;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  .button--primary {
    gap: 12px;
  }

  .slider-controls {
    bottom: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .collection-print {
    transform:
      translate(-50%, -50%)
      translate3d(var(--base-x), var(--base-y), 0)
      rotate(var(--base-rotate));
  }
}
