@font-face {
  font-family: Poppins;
  src: url("assets/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("assets/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
:root {
  --paper: #efeeea;
  --ink: #171716;
  --muted: #777771;
  --line: #bdb8b0;
  --accent: #a47353;
  --page-width: 1440px;
  --space-unit: 8px;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
button,
input {
  font: inherit;
  color: inherit;
}
button,
a,
label,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.35;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-weight: 400;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.site {
  max-width: var(--page-width);
  margin: auto;
  background: var(--paper);
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--paper);
  padding: 12px;
  z-index: 20;
}
.product-intro {
  position: relative;
  display: grid;
  grid-template-columns: 57% 43%;
  height: auto;
  min-height: 0;
  align-items: start;
  background: #e9e9e9;
  isolation: isolate;
}
.site-header {
  position: absolute;
  top: 30px;
  left: 35px;
  right: 35px;
  z-index: 2;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 0 80px;
  gap: 32px;
  color: white;
  background: rgb(0 0 0 / 24%);
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 82px;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 12px;
}
.site-header nav a {
  padding: 16px 0;
  white-space: nowrap;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: #795638;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 12px;
  flex: 0 0 44px;
}
.icon-button img {
  width: 20px;
  height: 20px;
}
.site-header .icon-button img {
  filter: invert(1);
}
.cart-button {
  position: relative;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  line-height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  text-align: center;
}
.mobile-menu-button {
  display: none;
}
.product-visual {
  overflow: hidden;
  height: max(780px, calc(100svh - 60px));
  max-height: 1022px;
  min-height: 0;
  align-self: start;
  background: #e7e7e7;
  position: sticky;
  top: 0;
}
.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
  touch-action: pan-y;
}
.gallery-cursor { position:absolute; z-index:4; display:grid; place-items:center; width:44px; height:44px; border-radius:50%; background:var(--paper); color:#171716; font-size:0; line-height:1; pointer-events:none; opacity:0; transform:translate(-50%,-50%); transition:opacity .15s; }
.gallery-cursor::before { content:""; width:8px; height:8px; border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(-45deg); }
.gallery-cursor.is-prev::before { transform:rotate(135deg); }
.gallery-cursor.is-visible { opacity:1; }
.gallery-main {
  --gallery-base-transform: scale(1);
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: var(--gallery-base-transform);
  transform-origin: center top;
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.gallery-main.is-slide-next {
  transform: translateX(-100%) var(--gallery-base-transform);
}
.gallery-main.is-slide-prev {
  transform: translateX(100%) var(--gallery-base-transform);
}
.gallery-transition-image {
  --gallery-base-transform: scale(1);
  --gallery-entry-offset: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(var(--gallery-entry-offset)) var(--gallery-base-transform);
  transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
.gallery-transition-image.is-active {
  visibility: visible;
  transform: var(--gallery-base-transform);
}
.gallery-thumbs {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.gallery-thumb { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; overflow: hidden; background: rgb(255 255 255 / 50%); pointer-events: auto; transition: all .2s; }
.gallery-thumb.is-active { background: #fff; }
.product-gallery.is-white-bg .gallery-thumb { background: rgb(190 190 190 / 55%); }
.product-gallery.is-white-bg .gallery-thumb.is-active { background: #c8c8c8; }
.product-gallery:hover .gallery-thumb,
.gallery-thumb:focus-visible { width: 54px; height: 54px; border: 1px solid transparent; border-radius: 0; background: #eee; pointer-events: auto; }
.product-gallery:hover .gallery-thumb.is-active { border-color: #795638; }
.gallery-thumb img { display: none; width: 100%; height: 100%; object-fit: cover; }
.product-gallery:hover .gallery-thumb img,
.gallery-thumb:focus-visible img { display: block; }
.gallery-thumbs, .gallery-thumb { cursor: pointer; }
.product-information {
  --information-inset: 30px;
  position: relative;
  align-self: stretch;
  background: var(--paper);
  padding-top: 184px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: max(780px, calc(100svh - 60px));
  text-align: left;
}
.product-information h1 {
  font-size: 26px;
  line-height: 1.3;
  padding: 0 38px 27px 40px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.product-description {
  padding: 20px 32px 22px 40px;
  text-align: left;
}
.product-description h2 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
}
.product-description p {
  font-size: 14px;
  line-height: 1.48;
  text-align: justify;
  text-align-last: left;
  text-wrap: pretty;
}
.product-description p:first-of-type {
  position: relative;
  top: 2px;
}
.product-description p + p {
  margin-top: 0.68lh;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.option-row {
  display: grid;
  grid-template-columns: 52% 48%;
  position: relative;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.option-row > legend {
  float: left;
  width: 52%;
  padding-left: 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.option-row > legend + .segments,
.option-row > legend + .swatches {
  grid-column: 2;
}
.option-row > label {
  padding-left: 16px;
}
.segments {
  display: flex;
  height: 100%;
  min-height: 44px;
}
.segments label {
  flex: 1;
  min-width: 0;
  position: relative;
  cursor: pointer;
}
.segments input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.segments span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px;
  text-align: center;
  border-left: 1px solid var(--line);
  font-size: 11px;
  transition: background 0.15s;
}
.segments input:checked + span {
  background: #dcd8d0;
}
.segments input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}
.swatches {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 0 16px 0 8px;
  transform: translateX(2px);
}
.swatches label {
  width: 32px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.swatches input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.swatches label > span:first-of-type {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 10%);
}
.swatches input:checked + span {
  outline: 1px solid var(--swatch);
  outline-offset: 3px;
}
.swatches label:nth-child(5) input:checked + span,
.swatches label:nth-child(6) input:checked + span {
  outline-color: color-mix(in srgb, var(--swatch) 85%, #000 15%);
}
.swatches input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.stepper {
  display: flex;
  justify-self: end;
  margin-right: 16px;
  align-items: center;
  height: 43px;
}
.stepper button {
  width: 34px;
  height: 42px;
  padding: 10px;
}
.stepper img {
  width: 12px;
  height: 12px;
}
.stepper input {
  border: 0;
  background: none;
  width: 35px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
  font-size: 12px;
}
.stepper input::-webkit-inner-spin-button {
  appearance: none;
}
.price-row {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px 12px 16px;
  font-size: 11px;
}
.price-row span:last-child {
  font-size: 23px;
}
.purchase {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 40px 32px 25px 22%;
  gap: 30px;
}
.purchase output {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  align-self: stretch;
  text-align: right;
  font-size: 17px;
}
.add-to-cart {
  background: var(--accent);
  border: 1px solid #826049;
  border-radius: 5px;
  padding: 13px 18px;
  font-size: 12px;
  min-height: 44px;
  transition: background 0.15s;
}
.add-to-cart:hover {
  background: #906144;
}
.product-support {
  margin-top: auto;
}
.product-support details {
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.product-support summary {
  list-style: none;
  padding: 14px 34px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  min-height: 44px;
}
.product-support summary::-webkit-details-marker {
  display: none;
}
.product-support summary img {
  width: 12px;
  height: 12px;
  transform: translateX(5px);
}
.product-support details[open] summary img {
  content: url("assets/minus.svg");
  transform: translateX(5px);
}
.product-support details p {
  padding: 0 34px 16px 16px;
  line-height: 1.65;
  color: #5b5b56;
}
.living-hero {
  height: 798px;
  overflow: hidden;
}
.living-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 59.5%;
}
.philosophy-heading {
  text-align: center;
  padding: 74px 24px 19px;
}
.philosophy-heading > p {
  font-size: 16px;
  margin-bottom: 20px;
}
.philosophy-heading h2 {
  font-size: 32px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .gallery-thumbs {
    gap: 16px;
  }
  .philosophy-heading h2 br {
    display: none;
  }
}
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 62px;
  min-height: 798px;
  padding: 58px 0 0 53px;
}
.design-copy {
  grid-column: 1;
  grid-row: 1;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  text-align-last: left;
  color: var(--muted);
  max-width: calc(100% + 10px);
}
.design-sketch {
  grid-column: 1;
  grid-row: 2;
  width: 458px;
  max-width: 100%;
  height: 544px;
  margin-top: 30px;
  overflow: hidden;
}
.design-sketch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.design-room {
  grid-column: 2;
  grid-row: 1/3;
  width: 100%;
  height: 740px;
}
.design-room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details-carousel {
  position: relative;
  padding-top: 115px;
}
.details-carousel .carousel-track {
  cursor: none;
}
.carousel-track {
  scrollbar-width: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.details-track {
  display: flex;
}
.detail-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 551px 1fr;
  align-items: center;
  gap: 90px;
  padding: 0 68px 0 228px;
  scroll-snap-align: start;
  min-width: 0;
}
.detail-photo {
  width: 551px;
  height: 590px;
  object-fit: cover;
}
.detail-photo.now-playing {
  object-position: center;
}
.detail-photo.glass {
  object-position: 74% center;
}
.detail-photo.active-rotation {
  object-position: center;
}
.detail-copy {
  min-width: 0;
}
.detail-copy h2 {
  font-size: 23px;
  line-height: 1.5;
  margin-bottom: 34px;
}
.detail-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  gap: 12px;
}
.carousel-arrow {
  opacity: 1;
  transition: opacity 0.15s, background-color 0.15s;
}
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.carousel-dots {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}
.carousel-dots button {
  display: grid;
  place-items: center;
  width: 23px;
  height: 40px;
  padding: 0;
}
.carousel-dots button::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a7a6a0;
  transition: background 0.15s;
}
.carousel-dots .is-active::before {
  background: #171716;
}
.details-carousel .carousel-controls {
  gap: 8px;
}
.details-carousel .carousel-controls {
  display: none;
}
.details-carousel .carousel-dots {
  flex-wrap: nowrap;
  gap: 2px;
  overflow: visible;
}
.details-carousel .carousel-dots button {
  width: 20px;
  height: 40px;
}
.space h2 {
  font-size: 30px;
  line-height: 1.45;
  text-align: center;
  padding: 32px 20px 52px;
}
.space-photo {
  height: 690px;
  overflow: hidden;
}
.space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}
.living {
  padding: 0 49px 12px;
}
.living-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 62px 0 50px;
}
.living-heading h2 {
  font-size: 27px;
}
.living-heading p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.living-track {
  display: flex;
  gap: 31px;
  overflow: hidden;
  scroll-snap-type: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  contain: paint;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: scroll-position;
}
.living-track.is-dragging {
  cursor: grabbing;
}
.living-track figure {
  transition: transform 360ms ease;
}
.living-track figure:hover {
  transform: scale(0.965);
  backface-visibility: hidden;
  will-change: transform;
}
.living-track figure {
  flex: 0 0 calc((100% - 62px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 426/579;
  overflow: hidden;
}
.living-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.bag-dialog {
  padding: 0;
  border: 1px solid #d7d4cc;
  border-radius: 5px;
  color: var(--ink);
  background: var(--paper);
  width: 490px;
  max-width: calc(100% - 24px);
  max-height: calc(100svh - 32px);
  overflow: auto;
}
.bag-dialog::backdrop {
  background: rgb(0 0 0 / 30%);
}
.bag-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.bag-heading h2 {
  font-size: 21px;
}
.bag-heading h2 span {
  font-size: 13px;
  color: var(--muted);
  margin-left: 12px;
}
#bag-content {
  padding: 24px;
}
.bag-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #d9d5cd;
}
.bag-item img {
  width: 90px;
  height: 125px;
  object-fit: cover;
}
.bag-item h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px;
}
.bag-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.bag-item button {
  text-decoration: underline;
  font-size: 12px;
  margin-top: 10px;
  padding: 5px 0;
}
.bag-empty {
  padding: 38px 0;
  color: var(--muted);
  text-align: center;
}
.bag-footer {
  padding: 0 24px 24px;
}
.bag-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  padding: 14px 0 24px;
}
.continue-button {
  width: 100%;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 3px;
  font-size: 13px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .site-header {
    padding: 0 24px;
    gap: 16px;
  }
  .site-header nav {
    gap: 15px;
    font-size: 10px;
  }
  .product-intro {
    grid-template-columns: 55% 45%;
    max-height: none;
    height: auto;
    min-height: 0;
  }
  .product-information {
    padding-top: 145px;
  }
  .product-information h1 {
    font-size: 22px;
    padding: 0 24px 24px;
  }
  .product-description {
    padding: 18px 24px;
  }
  .product-description h2 {
    font-size: 17px;
  }
  .product-description p {
    font-size: 12px;
  }
  .option-row {
    grid-template-columns: 48% 52%;
    font-size: 9px;
  }
  .option-row > legend {
    width: 48%;
    padding-left: 12px;
  }
  .segments span {
    font-size: 9px;
  }
  .swatches {
    padding-right: 8px;
  }
  .purchase {
    padding-top: 28px;
    gap: 24px;
  }
  .living-hero {
    height: 610px;
  }
  .design-grid {
    column-gap: 36px;
    padding-left: 40px;
    min-height: 690px;
  }
  .design-room {
    height: 640px;
  }
  .design-sketch {
    width: 360px;
    height: 450px;
  }
  .design-copy {
    font-size: 13px;
    line-height: 1.6;
  }
  .detail-slide {
    grid-template-columns: 48% 1fr;
    padding: 0 6% 0 10%;
    gap: 8%;
  }
  .detail-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 551/590;
  }
  .detail-copy h2 {
    font-size: 20px;
  }
  .detail-copy p {
    font-size: 13px;
  }
  .space-photo {
    height: 560px;
  }
  .living-heading h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  html,
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  .site {
    width: 100vw;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    background: var(--paper);
    overflow-x: clip;
  }
  main,
  .site > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .product-intro {
    display: flex;
    flex-direction: column;
    max-height: none;
    height: auto;
    background: var(--paper);
  }
  .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: 64px;
    width: 100%;
    align-self: stretch;
    flex: 0 0 64px;
    gap: 12px;
    padding: 0 20px;
    background: #a9aaa5;
  }
  .brand {
    margin-right: auto;
  }
  .brand img {
    width: 92px;
  }
  .mobile-menu-button {
    display: flex;
    order: -1;
    margin-left: -12px;
  }
  .header-tools {
    gap: 0;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px 24px 24px;
    background: #a9aaa5;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 14px;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }
  .product-visual {
    height: 470px;
    position: relative;
  }
  .gallery-main {
    transform: scale(1);
  }
  .product-information {
    --information-inset: 20px;
    min-height: 0;
    padding: 28px 0 0;
  }
  .product-information h1 {
    padding: 0 20px 22px;
    font-size: 24px;
    line-height: 1.4;
  }
  .product-description {
    padding: 26px 20px 22px 20px;
  }
  .product-description p:first-of-type {
    margin-top: 3px;
  }
  .product-description h2 {
    font-size: 17px;
  }
  .product-description p {
    font-size: 13px;
    line-height: 1.55;
  }
  .option-row {
    grid-template-columns: 43% 57%;
    font-size: 9px;
    min-height: 48px;
  }
  .option-row > legend {
    width: 43%;
    padding-left: 14px;
    min-height: 48px;
  }
  .segments {
    min-height: 48px;
  }
  .segments span {
    font-size: 10px;
    padding: 8px 5px;
  }
  .accessories-row legend {
    max-width: none;
    line-height: normal;
  }
  .swatches {
    padding: 0 12px 0 6px;
  }
  .swatches label {
    width: 31px;
    height: 48px;
  }
  .swatches label > span:first-of-type {
    width: 15px;
    height: 15px;
  }
  .stepper {
    height: 48px;
    margin-right: 12px;
    transform: translateX(10px);
  }
  .stepper button {
    width: 44px;
    height: 44px;
    padding: 15px;
  }
  .stepper input {
    font-size: 14px;
  }
  .price-row {
    padding: 22px 20px 12px 14px;
  }
  .price-row span:last-child {
    font-size: 21px;
  }
  .purchase {
    padding: 24px 20px;
    gap: 20px;
  }
  .purchase output {
    font-size: 17px;
  }
  .add-to-cart {
    width: 100%;
    font-size: 12px;
    min-height: 48px;
  }
  .product-support summary {
    min-height: 49px;
    font-size: 10px;
    padding-right: 13px;
  }
  .product-support summary img {
    transform: translateX(-4px);
  }
  .product-support details[open] summary img {
    content: url("assets/minus.svg");
    transform: translateX(-4px);
  }
  .story {
    scroll-margin-top: 0;
  }
  .living-hero {
    height: auto;
    aspect-ratio: 393/567;
  }
  .living-hero img {
    object-fit: cover;
    object-position: 50% 50%;
  }
  .philosophy-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 20px;
    min-height: 285px;
  }
  .philosophy-heading > p {
    font-size: 14px;
    margin: 0;
  }
  .philosophy-heading h2 {
    font-size: 24px;
    line-height: 1.5;
    max-width: 360px;
    margin: 0;
  }
  .philosophy-heading h2 br {
    display: none;
  }
  .philosophy-heading > p,
  .philosophy-heading > h2 {
    transform: translateY(5px);
  }
  .design-grid {
    display: grid;
    grid-template-columns: 44% 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    padding: 0;
    min-height: 852px;
    align-items: start;
  }
  .design-copy {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding-right: 20px;
    max-width: none;
    color: #7b7b76;
    text-align: left;
    text-align-last: left;
    transform: translateX(-10px);
  }
  .design-sketch {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 174/247;
    margin: 0;
    transform: translateY(10px);
  }
  .design-sketch img {
    object-fit: cover;
  }
  .design-room {
    grid-column: 1/3;
    grid-row: 2;
    width: calc(100% - 30px);
    height: auto;
    aspect-ratio: 334/445;
    justify-self: end;
    margin: 44px 0;
  }
  .design-room img {
    object-fit: cover;
    object-position: 46% 50%;
  }
  .details-carousel {
    padding-top: 68px;
    min-height: 852px;
  }
  .detail-slide {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .detail-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 393/421;
  }
  .detail-copy {
    padding: 24px 12px 0 30px;
    min-height: 265px;
    transform: translateY(10px);
  }
  .detail-copy h2 {
    font-size: 23px;
    line-height: 1.5;
    margin-bottom: 39px;
  }
  .detail-copy p {
    font-size: 14px;
    line-height: 1.5;
    color: #7b7b76;
    transform: translateY(-20px);
  }
  .carousel-controls {
    height: 76px;
    gap: 12px;
  }
  .details-carousel .carousel-controls {
    transform: translateY(-30px);
  }
  .carousel-arrow {
    opacity: 1;
  }
  .carousel-dots button {
    width: 18px;
    height: 44px;
  }
  .carousel-dots button::before {
    width: 7px;
    height: 7px;
  }
  .space h2 {
    font-size: 24px;
    line-height: 1.5;
    max-width: 360px;
    margin: auto;
    padding: 0 20px 40px;
  }
  .space-photo {
    height: auto;
    aspect-ratio: 393/244;
  }
  .space-photo img {
    object-position: 50% 53%;
  }
  .living {
    padding: 0 0 20px;
  }
  .living-heading {
    display: block;
    padding: 44px 30px 30px;
    text-align: left;
  }
  .living-heading h2 {
    font-size: 24px;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .living-heading p {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    max-width: none;
    margin-left: 0;
    color: #7b7b76;
    text-align: justify;
    text-align-last: left;
    transform: translateY(-10px);
  }
  .living-heading p br {
    display: none;
  }
  .living-track {
    gap: 10px;
    padding-right: 0;
    scroll-padding-left: 0;
    transform: translateY(-10px);
  }
  .living-track figure {
    flex: 0 0 276px;
    aspect-ratio: 276/376;
  }
  .bag-dialog {
    font-size: 14px;
  }
  .bag-heading {
    padding: 14px 16px;
  }
  .bag-item {
    grid-template-columns: 75px 1fr;
    gap: 14px;
  }
  .bag-item img {
    width: 75px;
    height: 112px;
  }
}
@media (max-width: 359px) {
  .philosophy-heading h2 {
    font-size: 21px;
  }
  .design-grid {
    gap: 14px;
    min-height: 810px;
  }
  .design-copy {
    font-size: 13px;
  }
  .design-room {
    margin-top: 32px;
  }
  .detail-copy h2 {
    font-size: 20px;
  }
  .detail-copy p {
    font-size: 13px;
  }
  .detail-copy {
    min-height: 284px;
  }
  .details-carousel {
    min-height: 800px;
  }
  .space h2 {
    font-size: 22px;
  }
  .living-heading h2 {
    font-size: 22px;
  }
  .living-track {
    padding-right: calc(100% - 260px);
  }
  .living-track figure {
    flex-basis: 260px;
  }
  .product-information h1 {
    font-size: 22px;
  }
  .swatches {
    padding-right: 6px;
    gap: 0;
  }
  .swatches label {
    width: 25px;
  }
}
.design-room {
  min-width: 0;
  align-self: start;
}
.living-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}
.carousel-dots button {
  width: 44px;
  height: 44px;
}
@media (min-width: 1201px) {
  .product-visual {
    height: 100svh;
  }
  .product-gallery.is-white-bg {
    background: #e9e9e9;
  }
  .product-gallery:not(.is-white-bg) {
    background: #e9e9e9;
  }
  .product-gallery.is-white-bg .gallery-main {
    --gallery-base-transform: scale(1);
  }
  .product-gallery.is-white-bg .gallery-transition-image {
    --gallery-base-transform: scale(1);
  }
  .product-gallery .gallery-main,
  .product-gallery .gallery-transition-image {
    --gallery-base-transform: scale(1);
  }
  .philosophy-heading {
    padding: 80px 24px 25px;
  }
  .philosophy-heading > p {
    margin-bottom: 16px;
    transform: translateX(-2px);
  }
  .space h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170.5px;
    padding: 0 20px;
    white-space: nowrap;
    transform: translateY(-33px);
  }
  .space h2 > span {
    display: inline-block;
    transform: translateY(15px);
  }
  .product-intro {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .product-information {
    padding-top: 208px;
    width: calc(100% + 15px);
    transform: translateX(-15px);
  }
  .product-information h1 {
    font-size: 28px;
    line-height: 1;
    color: #000;
    padding-right: 43px;
  }
  .product-description {
    padding-right: 37px;
  }
  .price-row span:last-child {
    transform: translateY(10px);
  }
  .segments,
  .swatches {
    margin-right: 5px;
  }
  .stepper {
    margin-right: 21px;
  }
  .price-row,
  .purchase {
    padding-right: 37px;
  }
  .product-support summary,
  .product-support details p {
    padding-right: 39px;
  }
  .gallery-main {
    transform: scale(1);
    transform-origin: center top;
  }
  .design-grid {
    grid-template-columns: minmax(0, 1fr) 53.3526%;
    padding-left: 55px;
  }
  .design-room {
    height: auto;
    aspect-ratio: 1;
  }
  .details-carousel {
    transform: translateY(-35px);
  }
  .detail-slide {
    grid-template-columns:
      55px
      calc(46.6474% - 25.656px)
      55px
      minmax(0, 1fr)
      55px;
    gap: 0;
    padding: 0;
  }
  .detail-photo {
    grid-column: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 551 / 590;
    transform: translateX(-2px) scale(0.99);
    transform-origin: left bottom;
  }
  .detail-copy {
    grid-column: 4;
    width: calc(100% + 4px);
    transform: translateX(-4px);
  }
  .details-carousel .carousel-controls {
    width: auto;
    margin-left: calc(46.6474% + 65px);
    justify-content: flex-start;
    transform: translateY(-31px);
  }
  .living {
    padding-right: 10px;
    padding-left: 10px;
    transform: translateY(3px);
  }
  .living-heading {
    padding-top: 57px;
    padding-right: 5px;
    padding-bottom: 45px;
    padding-left: 5px;
  }
  .living-track {
    gap: 10px;
  }
  .living-track figure {
    flex-basis: calc((100% - 20px) / 3);
  }
  .living-heading p {
    width: 100%;
    text-align: right;
    transform: translateX(-5px);
  }
  .living-heading h2 {
    transform: translateX(5px);
  }
  .living .carousel-controls {
    transform: translateY(10px);
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .product-intro {
    height: 950px;
    min-height: 0;
  }
  .design-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .design-room {
    height: auto;
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .swatches {
    transform: none;
  }
  .gallery-main,
  .living-hero img,
  .detail-photo,
  .space-photo img,
  .living-track img {
    transform: translateZ(0) scale(1.01);
    transform-origin: right center;
  }
  .gallery-main,
  .gallery-transition-image {
    --gallery-base-transform: scale(1.01);
    transform-origin: right center;
  }
  .design-room img {
    transform: scale(0.994);
    transform-origin: right top;
  }
  .design-room,
  .detail-slide {
    overflow: hidden;
  }
  .product-gallery:hover .gallery-thumb,
  .gallery-thumb:focus-visible {
    width: 40px;
    height: 40px;
  }
  .living-track .gallery-clone {
    display: block;
  }
  .detail-copy h2 {
    font-size: 24px;
  }
  .philosophy-heading h2 span {
    display: block;
  }
  .philosophy-heading h2 {
    font-size: 24px;
  }
  .space h2 {
    transform: translateY(-20px);
  }
}
@media (max-width: 359px) {
  .detail-copy h2 {
    font-size: 20px;
  }
}
.product-information h1,
.product-description,
.price-row,
.product-support summary,
.product-support details p {
  padding-left: var(--information-inset);
  text-align: left;
}
.option-row > legend,
.option-row > label {
  padding-left: var(--information-inset);
  text-align: left;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
