:root {
  --white: #ffffff;
  --paper: #f7f5f0;
  --mist: #ebe8df;
  --ink: #111111;
  --charcoal: #242421;
  --muted: #77736a;
  --line: #dfdbd1;
  --chrome: #cfd2ce;
  --accent: #8f2f21;
  --olive: #6d715b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.home-page {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 18px 34px;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.standard-header {
  position: sticky;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  text-transform: uppercase;
  line-height: 0.86;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: var(--charcoal);
  font-size: 13px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.home-progress {
  position: fixed;
  right: 34px;
  bottom: 28px;
  left: 34px;
  z-index: 25;
  height: 2px;
  background: rgba(17, 17, 17, 0.14);
}

.home-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.horizontal-stage {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.horizontal-stage::-webkit-scrollbar {
  height: 0;
}

.editorial-stage {
  background: var(--white);
  scroll-behavior: auto;
  scroll-snap-type: none;
  overscroll-behavior: none;
  cursor: grab;
}

.editorial-stage.dragging {
  cursor: grabbing;
}

.home-panel {
  position: relative;
  display: grid;
  flex: 0 0 100vw;
  min-width: 100vw;
  height: 100vh;
  min-height: 680px;
  padding: 110px 76px 76px 104px;
  overflow: hidden;
  scroll-snap-align: start;
}

.panel-rail {
  position: absolute;
  top: 76px;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 48px;
  padding: 24px 0;
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: fixed;
  right: 34px;
  bottom: 44px;
  z-index: 26;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.scroll-cue i {
  display: block;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.18);
}

.scroll-cue i::after {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ink);
  content: "";
  animation: cueSlide 1.5s ease-in-out infinite;
}

@keyframes cueSlide {
  0% {
    transform: translateX(-38px);
  }
  100% {
    transform: translateX(74px);
  }
}

.story-panel {
  isolation: isolate;
  padding: 104px 72px 64px 108px;
}

.story-panel::before {
  position: absolute;
  inset: 76px auto 28px 48px;
  width: 1px;
  background: rgba(17, 17, 17, 0.08);
  content: "";
  z-index: -1;
}

.cutout {
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 28px 34px rgba(17, 17, 17, 0.18));
}

.red-slab {
  position: absolute;
  top: 76px;
  right: 0;
  bottom: 28px;
  width: 18vw;
  min-width: 210px;
  background: var(--accent);
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.cover-panel {
  grid-template-columns: 0.78fr 1fr;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0 62%, rgba(247,245,240,0.88) 62%),
    var(--white);
}

.cover-type {
  position: relative;
  z-index: 4;
  align-self: end;
  padding-bottom: 54px;
}

.cover-type h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(116px, 14vw, 222px);
  font-weight: 400;
  line-height: 0.78;
}

.cover-type p:not(.eyebrow) {
  max-width: 440px;
  margin: 32px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1;
}

.cover-sofa {
  position: absolute;
  right: 3vw;
  bottom: 6vh;
  z-index: 3;
  width: min(64vw, 980px);
}

.cover-caption {
  position: absolute;
  right: 5vw;
  bottom: 8vh;
  z-index: 6;
  display: grid;
  gap: 4px;
  color: var(--charcoal);
  text-align: right;
  text-transform: uppercase;
}

.cover-caption span {
  font-size: 12px;
  font-weight: 900;
}

.cover-caption small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.generated-panel {
  background:
    radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.12), rgba(17, 17, 17, 0) 34%),
    linear-gradient(90deg, rgba(17, 17, 17, 1), rgba(30, 29, 27, 0.96) 52%, rgba(17, 17, 17, 1)),
    var(--ink);
  color: var(--white);
}

.generated-panel::before {
  background: rgba(255, 255, 255, 0.1);
}

.generated-hero {
  position: absolute;
  inset: 76px 0 28px 48px;
  z-index: 1;
  width: calc(100% - 48px);
  height: calc(100% - 104px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.18) 55%, rgba(17, 17, 17, 0.7)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  color: transparent;
  font-size: 0;
  line-height: 0;
  object-fit: cover;
  opacity: 0.88;
  text-indent: -9999px;
}

.generated-hero.image-load-failed {
  display: none;
}

.generated-panel::after {
  position: absolute;
  inset: 76px 0 28px 48px;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.82) 0, rgba(17, 17, 17, 0.2) 38%, rgba(17, 17, 17, 0.04) 70%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.32), rgba(17, 17, 17, 0));
  content: "";
  pointer-events: none;
}

.generated-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 760px;
  padding-bottom: 54px;
}

.generated-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 8.5vw, 138px);
  font-weight: 400;
  line-height: 0.92;
}

.generated-index {
  position: absolute;
  right: 3vw;
  bottom: -8vh;
  z-index: 3;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 30vw;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.type-panel {
  background:
    linear-gradient(90deg, var(--white) 0 52%, var(--paper) 52% 100%);
}

.giant-word {
  position: absolute;
  left: 8.8vw;
  top: 20vh;
  z-index: 1;
  display: grid;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(150px, 19vw, 300px);
  line-height: 0.72;
  text-transform: uppercase;
}

.lounge-float {
  position: absolute;
  right: 18vw;
  bottom: 9vh;
  z-index: 3;
  width: min(40vw, 620px);
}

.editor-note {
  position: absolute;
  right: 6.4vw;
  top: 24vh;
  z-index: 4;
  width: min(300px, 24vw);
}

.editor-note h2,
.crop-text h2,
.chrome-copy h2,
.objects-copy h2,
.service-copy h2,
.closing-copy-v2 h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.editor-note h2 {
  font-size: clamp(26px, 2.6vw, 42px);
}

.editor-note a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.crop-ink {
  background: var(--ink);
  color: var(--white);
}

.crop-ink::before {
  background: rgba(255, 255, 255, 0.12);
}

.crop-text {
  position: absolute;
  left: 8.8vw;
  top: 18vh;
  z-index: 2;
  max-width: 680px;
}

.crop-text h2 {
  font-size: clamp(52px, 7.8vw, 128px);
}

.crop-sofa {
  position: absolute;
  right: -4vw;
  bottom: -2vh;
  width: min(82vw, 1200px);
  opacity: 0.96;
}

.metric-block {
  position: absolute;
  right: 7vw;
  top: 18vh;
  display: grid;
  color: var(--white);
  text-align: right;
}

.metric-block strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(96px, 12vw, 190px);
  line-height: 0.82;
}

.metric-block span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chrome-panel {
  grid-template-columns: 0.82fr 0.72fr;
  gap: 72px;
  align-items: center;
  background: var(--white);
}

.photo-window {
  position: relative;
  z-index: 3;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 34px 34px 0 var(--paper);
}

.photo-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tall-window {
  width: min(45vw, 660px);
  height: 62vh;
  padding: 52px;
}

.chrome-copy {
  position: relative;
  z-index: 2;
}

.chrome-copy h2 {
  max-width: 560px;
  font-size: clamp(48px, 5.9vw, 92px);
}

.outline-number {
  position: absolute;
  right: 1.5vw;
  bottom: -9vh;
  z-index: 1;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 36vw;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.1);
}

.room-panel {
  background:
    linear-gradient(90deg, rgba(143, 47, 33, 0.95) 0 16%, transparent 16%),
    var(--paper);
}

.room-grid {
  position: absolute;
  inset: 120px 76px 64px 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.room-grid span {
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}

.poster-type {
  position: absolute;
  left: 9vw;
  top: 14vh;
  z-index: 1;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(86px, 12vw, 190px);
  line-height: 0.78;
  text-transform: uppercase;
}

.room-sofa {
  position: absolute;
  right: 9vw;
  bottom: 11vh;
  z-index: 3;
  width: min(54vw, 820px);
}

.room-chair {
  position: absolute;
  left: 23vw;
  bottom: 9vh;
  z-index: 4;
  width: min(26vw, 380px);
}

.room-table {
  position: absolute;
  right: 6vw;
  top: 18vh;
  z-index: 4;
  width: min(24vw, 340px);
}

.mirror-panel {
  background: var(--charcoal);
  color: var(--white);
}

.mirror-panel::before {
  background: rgba(255, 255, 255, 0.12);
}

.mirror-band {
  position: absolute;
  left: 8vw;
  top: 15vh;
  z-index: 1;
  display: grid;
  color: transparent;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(120px, 18vw, 290px);
  line-height: 0.74;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
}

.mirror-photo {
  position: absolute;
  top: 12vh;
  left: 47vw;
  z-index: 3;
  width: min(24vw, 360px);
  height: 72vh;
  margin: 0;
  padding: 28px;
  background: var(--white);
}

.mirror-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.side-copy {
  position: absolute;
  right: 8vw;
  bottom: 14vh;
  z-index: 4;
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.05;
}

.objects-panel {
  grid-template-columns: minmax(360px, 0.56fr) 1fr;
  align-items: center;
  gap: 42px;
  background: var(--white);
}

.objects-copy h2 {
  max-width: 500px;
  font-size: clamp(50px, 7vw, 108px);
}

.object-stack {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 16px;
  align-self: end;
}

.object-card {
  display: grid;
  grid-template-rows: 290px auto;
  min-height: 372px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.object-card:nth-child(2) {
  transform: translateY(-10vh);
  background: var(--ink);
  color: var(--white);
}

.object-card:nth-child(3) {
  transform: translateY(5vh);
}

.object-card img {
  align-self: center;
  justify-self: center;
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.object-card:nth-child(2) img {
  mix-blend-mode: normal;
}

.object-card span {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.service-panel {
  background:
    linear-gradient(90deg, var(--white) 0 64%, var(--paper) 64%),
    var(--white);
}

.service-ribbon {
  position: absolute;
  top: 50%;
  left: 52%;
  z-index: 1;
  width: 92vh;
  color: rgba(143, 47, 33, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: left top;
}

.service-copy {
  position: absolute;
  top: 16vh;
  left: 9vw;
  z-index: 2;
  max-width: 760px;
}

.service-copy h2 {
  font-size: clamp(50px, 6.4vw, 98px);
}

.service-list {
  position: absolute;
  right: 6vw;
  bottom: 8vh;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
  width: min(58vw, 820px);
}

.service-list article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.service-list span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.service-list h3 {
  margin: 42px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.closing-panel-v2 {
  place-items: center;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.closing-panel-v2::before {
  background: rgba(255, 255, 255, 0.1);
}

.closing-mark {
  position: absolute;
  inset: auto auto -17vh 3vw;
  z-index: 1;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50vw;
  line-height: 0.78;
  opacity: 0.34;
}

.closing-chair {
  position: absolute;
  right: 8vw;
  bottom: 9vh;
  z-index: 2;
  width: min(36vw, 540px);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.45));
}

.closing-copy-v2 {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.closing-copy-v2 h2 {
  margin-bottom: 32px;
  font-size: clamp(60px, 9vw, 138px);
}

[data-depth] {
  translate: var(--parallax-x, 0) 0;
  opacity: var(--parallax-opacity, 1);
  transform: translateY(var(--story-y, 0));
  transform-origin: center;
  will-change: transform, translate, opacity, clip-path, filter;
}

.story-panel img[data-depth],
.story-panel figure[data-depth] {
  transform: translateY(var(--story-y, 0)) scale(var(--story-scale, 1));
}

@media (min-width: 821px) {
  .story-panel [data-depth],
  .story-panel .panel-rail,
  .story-panel .red-slab,
  .story-panel .room-grid span,
  .story-panel .generated-index,
  .story-panel .outline-number,
  .story-panel .closing-mark {
    transition:
      clip-path 180ms linear,
      filter 180ms linear;
  }

  .story-panel.has-entered [data-depth] {
    clip-path: inset(0 0 var(--story-clip-bottom, 0) 0);
  }

  .story-panel.has-entered img[data-depth],
  .story-panel.has-entered figure[data-depth] {
    filter: blur(var(--story-blur, 0)) drop-shadow(0 28px 34px rgba(17, 17, 17, 0.18));
  }

  .story-panel:not(.has-entered) [data-depth] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    clip-path: inset(8% 0 0 0);
  }

  .story-panel:not(.has-entered) img[data-depth],
  .story-panel:not(.has-entered) figure[data-depth] {
    transform: translateY(24px) scale(0.98);
    filter: blur(3px) drop-shadow(0 18px 24px rgba(17, 17, 17, 0));
    clip-path: inset(0 0 8% 0);
  }

  .story-panel:not(.has-entered) .panel-rail {
    opacity: 0;
    transform: translateX(-18px);
  }

  .story-panel:not(.has-entered) .red-slab {
    opacity: 0;
    transform: translateX(120px) skewX(-7deg);
  }

  .story-panel:not(.has-entered) .room-grid span {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  .story-panel:not(.has-entered) .generated-index,
  .story-panel:not(.has-entered) .outline-number,
  .story-panel:not(.has-entered) .closing-mark {
    opacity: 0;
    transform: translateY(64px) scale(0.9);
  }

  .story-panel.is-active .giant-word,
  .story-panel.is-active .poster-type,
  .story-panel.is-active .mirror-band {
    animation: letterPress 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .story-panel.is-active .cutout,
  .story-panel.is-active .generated-hero,
  .story-panel.is-active .photo-window,
  .story-panel.is-active .mirror-photo {
    animation: imageSettle 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(10% 0 0 0);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
    clip-path 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.product-card.reveal-on-scroll,
.collection-grid article.reveal-on-scroll,
.values-grid article.reveal-on-scroll,
.contact-card.reveal-on-scroll {
  transform: translateY(36px) scale(0.97);
}

.product-card.reveal-on-scroll.is-revealed,
.collection-grid article.reveal-on-scroll.is-revealed,
.values-grid article.reveal-on-scroll.is-revealed,
.contact-card.reveal-on-scroll.is-revealed {
  transform: translateY(0) scale(1);
}

@keyframes letterPress {
  0% {
    opacity: 0.82;
    filter: blur(2px);
    clip-path: inset(0 0 10% 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}

@keyframes imageSettle {
  0% {
    clip-path: inset(0 0 12% 0);
    filter: blur(5px) drop-shadow(0 16px 22px rgba(17, 17, 17, 0.02));
  }
  100% {
    clip-path: inset(0);
    filter: blur(0) drop-shadow(0 28px 34px rgba(17, 17, 17, 0.18));
  }
}

.rail-light {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
}

.hero-panel {
  grid-template-columns: minmax(420px, 0.88fr) minmax(440px, 1fr);
  align-items: end;
  gap: 44px;
  background: linear-gradient(90deg, var(--white), var(--white) 70%, var(--paper));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(84px, 12vw, 184px);
  font-weight: 400;
  line-height: 0.78;
}

.hero-line {
  max-width: 470px;
  margin: 32px 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.05;
}

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

.hero-product {
  align-self: center;
  margin: 0;
}

.hero-product img {
  width: min(57vw, 780px);
  margin-left: auto;
  mix-blend-mode: multiply;
}

.hero-product figcaption {
  margin-top: -8px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
}

.editorial-panel {
  grid-template-columns: 0.74fr 0.5fr;
  align-items: center;
  background: var(--white);
}

.type-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(96px, 17vw, 254px);
  line-height: 0.76;
  text-transform: uppercase;
}

.floating-product {
  position: absolute;
  z-index: 3;
  width: min(42vw, 520px);
  mix-blend-mode: multiply;
}

.floating-product.lounge {
  right: 12vw;
  bottom: 11vh;
}

.panel-note {
  position: absolute;
  right: 6vw;
  top: 24vh;
  max-width: 260px;
  color: var(--charcoal);
}

.panel-note p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.panel-note a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-ink {
  grid-template-columns: minmax(410px, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 74px;
  background: var(--ink);
  color: var(--white);
}

.split-image {
  display: grid;
  min-height: 62vh;
  place-items: center;
  background: var(--white);
}

.split-image img {
  width: 86%;
  mix-blend-mode: multiply;
}

.split-copy h2,
.strip-heading h2,
.manifesto-panel h2,
.closing-copy h2,
.page-hero h1,
.collection-feature h2,
.story-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.split-copy h2 {
  max-width: 520px;
  font-size: clamp(48px, 7vw, 104px);
}

.split-copy p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
}

.product-strip-panel {
  grid-template-columns: 0.36fr 1fr;
  align-items: end;
  gap: 42px;
  background: var(--paper);
}

.strip-heading {
  align-self: center;
}

.strip-heading h2 {
  font-size: clamp(52px, 8vw, 126px);
}

.home-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.mini-card,
.product-card,
.collection-grid article,
.values-grid article,
.manifesto-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.mini-card {
  display: grid;
  grid-template-rows: 300px auto auto;
  min-height: 404px;
  padding: 22px;
}

.mini-card img {
  align-self: center;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mini-card span {
  margin-top: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.mini-card small {
  color: var(--muted);
  text-transform: uppercase;
}

.manifesto-panel {
  grid-template-rows: auto 1fr;
  gap: 46px;
  background: var(--white);
}

.manifesto-panel h2 {
  max-width: 900px;
  font-size: clamp(54px, 8vw, 120px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-self: end;
}

.manifesto-grid article {
  min-height: 230px;
  padding: 28px;
}

.manifesto-grid span,
.collection-grid span,
.values-grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.manifesto-grid h3,
.collection-grid h3,
.values-grid h2 {
  margin: 26px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.manifesto-grid p,
.collection-grid p,
.values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.closing-panel {
  place-items: center;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.closing-panel img {
  width: min(76vw, 950px);
  opacity: 0.86;
  filter: grayscale(0.2);
  mix-blend-mode: screen;
}

.closing-copy {
  position: absolute;
  bottom: 13vh;
  left: 50%;
  width: min(720px, calc(100% - 120px));
  transform: translateX(-50%);
}

.closing-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 116px);
}

.page-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 38px 0 90px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.58fr);
  gap: 40px;
  align-items: end;
  padding: 46px 0 46px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
}

.page-hero .balanced-heading {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(100%, 900px);
  max-width: 820px;
  line-height: 0.9;
}

.page-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  padding-top: 40px;
}

.shop-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.shop-aside h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--charcoal);
  text-align: left;
  padding: 0 14px;
  border-radius: 2px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.product-card {
  display: grid;
  grid-template-rows: 310px auto;
  min-height: 446px;
  padding: 18px;
}

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

.product-card img {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card p {
  margin: 16px 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.product-card span {
  color: var(--muted);
  font-size: 14px;
}

.collection-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0;
}

.collection-feature img {
  width: 100%;
  mix-blend-mode: multiply;
}

.collection-feature h2 {
  font-size: clamp(44px, 6vw, 82px);
}

.collection-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.collection-grid article {
  display: grid;
  grid-template-rows: 280px auto;
  padding: 18px;
}

.collection-grid img {
  align-self: center;
  justify-self: center;
  max-height: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(260px, 0.48fr);
  gap: 60px;
  align-items: center;
  padding: 48px 0 48px;
}

.story-hero h1 {
  font-size: clamp(54px, 7vw, 108px);
}

.story-hero img {
  max-height: 600px;
  justify-self: center;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-columns p {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 40px;
}

.values-grid article {
  min-height: 250px;
  padding: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(320px, 0.52fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-card {
  padding: 24px;
}

.contact-card img {
  max-height: 250px;
  margin: 0 auto 24px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}

.contact-card p,
.contact-card dd {
  color: var(--muted);
  line-height: 1.65;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
}

.contact-card dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 4px 0 0;
}

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

  .home-product-row,
  .manifesto-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
  }

  .object-stack,
  .service-list {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
  }

  .home-panel {
    padding-right: 44px;
  }
}

@media (max-width: 820px) {
  body.home-page {
    overflow: auto;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand span {
    font-size: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.open {
    display: flex;
  }

  .header-action {
    display: none;
  }

  .home-progress,
  .scroll-cue,
  .panel-rail {
    display: none;
  }

  .horizontal-stage {
    display: block;
    width: auto;
    height: auto;
    overflow: visible;
  }

  .home-panel {
    display: grid;
    min-width: 0;
    height: auto;
    min-height: 720px;
    padding: 104px 22px 52px;
  }

  .story-panel {
    overflow: hidden;
  }

  .story-panel::before,
  .red-slab,
  .outline-number,
  .generated-index,
  .service-ribbon {
    display: none;
  }

  .cover-panel,
  .generated-panel,
  .type-panel,
  .chrome-panel,
  .objects-panel,
  .service-panel {
    grid-template-columns: 1fr;
    background: var(--white);
  }

  .generated-panel {
    background: var(--ink);
    color: var(--white);
  }

  .generated-panel::after {
    inset: 68px 0 0;
  }

  .generated-hero {
    position: absolute;
    inset: 68px 0 0;
    width: 100%;
    height: calc(100% - 68px);
    object-fit: cover;
    opacity: 0.68;
  }

  .generated-copy {
    position: relative;
    z-index: 4;
    align-self: end;
    padding-bottom: 0;
  }

  .generated-copy h2 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .cover-type {
    padding-bottom: 0;
  }

  .cover-type h1 {
    font-size: clamp(70px, 22vw, 118px);
  }

  .cover-type p:not(.eyebrow) {
    font-size: 28px;
  }

  .cover-sofa,
  .lounge-float,
  .crop-sofa,
  .room-sofa,
  .room-chair,
  .room-table,
  .closing-chair {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 28px;
  }

  .cover-caption {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 8px;
    text-align: left;
  }

  .giant-word,
  .crop-text,
  .poster-type,
  .mirror-band,
  .service-copy,
  .closing-copy-v2 {
    position: relative;
    inset: auto;
    width: auto;
  }

  .giant-word,
  .poster-type,
  .mirror-band {
    font-size: clamp(76px, 28vw, 150px);
  }

  .editor-note,
  .metric-block,
  .chrome-copy,
  .side-copy,
  .objects-copy {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    margin-top: 24px;
    text-align: left;
  }

  .crop-text h2,
  .chrome-copy h2,
  .objects-copy h2,
  .service-copy h2,
  .closing-copy-v2 h2 {
    font-size: clamp(44px, 13vw, 76px);
  }

  .metric-block {
    margin-top: 30px;
  }

  .tall-window,
  .mirror-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 420px;
    margin: 28px 0 0;
    padding: 24px;
  }

  .photo-window {
    box-shadow: 18px 18px 0 var(--paper);
  }

  .room-grid {
    inset: 90px 20px 50px;
  }

  .mirror-panel {
    min-height: 800px;
  }

  .object-stack,
  .service-list {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin-top: 32px;
  }

  .object-card,
  .object-card:nth-child(2),
  .object-card:nth-child(3) {
    transform: none;
  }

  .service-list article {
    min-height: 0;
  }

  .hero-panel,
  .editorial-panel,
  .panel-ink,
  .product-strip-panel,
  .collection-feature,
  .story-hero,
  .contact-layout,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(70px, 22vw, 118px);
  }

  .hero-line {
    font-size: 26px;
  }

  .hero-product img {
    width: 100%;
  }

  .type-stack {
    font-size: clamp(82px, 29vw, 180px);
  }

  .floating-product {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -34px;
  }

  .floating-product.lounge {
    right: auto;
    bottom: auto;
  }

  .panel-note {
    position: relative;
    top: auto;
    right: auto;
    max-width: none;
    margin-top: 22px;
  }

  .panel-ink {
    gap: 30px;
  }

  .split-image {
    min-height: 300px;
  }

  .home-product-row,
  .manifesto-grid,
  .collection-grid,
  .values-grid,
  .product-grid,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .mini-card {
    grid-template-rows: 230px auto auto;
    min-height: 330px;
  }

  .closing-copy {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    margin-top: 24px;
    transform: none;
  }

  .page-shell {
    width: min(100% - 32px, var(--max));
    padding-top: 20px;
  }

  .page-hero {
    padding: 54px 0 44px;
  }

  .page-hero h1,
  .story-hero h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-aside h2 {
    grid-column: 1 / -1;
  }

  .product-card,
  .collection-grid article {
    grid-template-rows: 260px auto;
  }
}

@media (max-width: 460px) {
  .shop-aside {
    grid-template-columns: 1fr;
  }

  .button,
  .header-action {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .product-card,
  .collection-grid article,
  .manifesto-grid article,
  .values-grid article,
  .contact-form,
  .contact-card {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .story-panel:not(.has-entered) [data-depth],
  .story-panel:not(.has-entered) .panel-rail,
  .story-panel:not(.has-entered) .red-slab,
  .story-panel:not(.has-entered) .room-grid span,
  .story-panel:not(.has-entered) .generated-index,
  .story-panel:not(.has-entered) .outline-number,
  .story-panel:not(.has-entered) .closing-mark,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    clip-path: inset(0);
    filter: none;
  }
}
