.hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - var(--header-height) - 72px);
  max-height: 840px;
  overflow: hidden;
  color: var(--ink);
  background: #e8e3dc;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: min(58%, 760px);
  background: rgb(246 244 240 / 92%);
  content: "";
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image-in 1200ms var(--ease-out) both;
}

@keyframes hero-image-in {
  from {
    opacity: .3;
    transform: scale(1.025);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  align-content: center;
  padding-bottom: 70px;
}

.hero__copy {
  width: min(610px, 48%);
  animation: hero-copy-in 800ms 200ms var(--ease-out) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0, 61% 36%, 100% 36%, 69% 58%, 80% 100%, 50% 75%, 20% 100%, 31% 58%, 0 36%, 39% 36%);
  content: "";
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.hero__lead {
  max-width: 470px;
  margin-bottom: 28px;
  color: rgb(17 17 17 / 72%);
  font-size: 18px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero__actions .button--outline {
  color: var(--ink);
  border-color: rgb(17 17 17 / 55%);
  background: rgb(255 255 255 / 20%);
}

.hero__actions .button--outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero__rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
  padding: 16px var(--gutter);
  border-top: 1px solid rgb(17 17 17 / 28%);
  color: rgb(17 17 17 / 72%);
  background: rgb(255 255 255 / 91%);
  font-size: 11px;
  font-weight: 600;
}

.hero__media-toggle {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 66px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 50%;
  color: #ffffff;
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(8px);
}

.hero__media-toggle:hover {
  color: var(--ink);
  background: #ffffff;
}

.hero__media-toggle svg {
  width: 16px;
  height: 16px;
}

.hero__rail span {
  display: grid;
  gap: 2px;
  padding-right: 18px;
  border-right: 1px solid rgb(17 17 17 / 20%);
}

.hero__rail span:last-child {
  border-right: 0;
}

.hero__rail b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.hero__rail small {
  font-size: 10px;
  font-weight: 500;
}

.hero__rail b,
.editorial-list b {
  font-weight: inherit;
}

html[dir="rtl"] .hero__copy,
html[dir="rtl"] .editorial-band__content,
html[dir="rtl"] .collection__head,
html[dir="rtl"] .site-footer {
  text-align: right;
}

.hero__rail svg {
  width: 15px;
  height: 15px;
}

.collection {
  padding: 34px 0 var(--space-10);
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.collection__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.collection__title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.collection h2 {
  margin: 0;
  font-size: 48px;
}

.collection__count {
  color: var(--ink-soft);
  font-size: 12px;
}

.collection__intro {
  max-width: 580px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 14px;
}

.collection__tools {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.density-control {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.density-control .icon-button {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 3px;
  color: var(--ink-soft);
}

.density-control .icon-button.is-active {
  color: var(--paper);
  background: var(--ink);
}

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

.product-grid[data-density="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 14px;
}

.catalog-empty {
  grid-column: 1 / -1;
  padding-block: 80px;
  color: var(--ink-soft);
  text-align: center;
}

.catalog-empty-state {
  display: grid;
  min-height: 440px;
  grid-column: 1 / -1;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 72px 24px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.catalog-empty-state > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.catalog-empty-state h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}

.catalog-empty-state > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

[data-requires-products][hidden] {
  display: none;
}

.editorial-band {
  overflow: hidden;
  background: #eeeee9;
}

.showroom {
  color: #ffffff;
  background: #171819;
}

.showroom__inner {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(360px, .68fr) minmax(620px, 1.32fr);
}

.showroom__content {
  display: grid;
  align-content: center;
  padding: 72px clamp(38px, 6vw, 92px);
}

.showroom__eyebrow {
  margin-bottom: 20px;
  color: #d69b9f;
  font-size: 11px;
  font-weight: 750;
}

.showroom__content h2 {
  max-width: 560px;
  margin-bottom: 21px;
  font-size: 51px;
  line-height: 1.02;
}

.showroom__content > p:nth-of-type(2) {
  max-width: 510px;
  margin-bottom: 30px;
  color: #bec3c5;
  font-size: 14px;
  line-height: 1.7;
}

.showroom__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 520px;
  margin: 0 0 31px;
  padding: 19px 0;
  border-top: 1px solid #3a3d3f;
  border-bottom: 1px solid #3a3d3f;
}

.showroom__facts dt {
  margin-bottom: 4px;
  color: #878e92;
  font-size: 9px;
  font-weight: 700;
}

.showroom__facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.showroom .button--light {
  width: fit-content;
  color: var(--ink);
  background: #ffffff;
}

.showroom__gallery {
  display: grid;
  min-height: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 44% 56%;
  gap: 2px;
  overflow: hidden;
  background: #171819;
}

.showroom__gallery figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.showroom__gallery-wide {
  grid-column: 1 / -1;
}

.showroom__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.showroom__gallery-wide img {
  object-position: center 47%;
}

.showroom__gallery figure:hover img {
  transform: scale(1.025);
}

.editorial-band__inner {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
}

.editorial-band__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--paper);
}

.editorial-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 900ms var(--ease-out);
}

.editorial-band:hover .editorial-band__media img {
  transform: scale(1.025);
}

.editorial-band__content {
  display: grid;
  align-content: center;
  padding: 70px clamp(38px, 6vw, 96px);
}

.editorial-band__content .eyebrow {
  margin-bottom: 20px;
}

.editorial-band__content h2 {
  margin-bottom: 20px;
  font-size: 50px;
}

.editorial-band__content > p {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.editorial-list {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--line-strong);
}

.editorial-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 600;
}

.editorial-list span {
  color: var(--accent);
  font-weight: 700;
}

.service-strip {
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.service-item:last-child {
  border-right: 0;
}

.service-item svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--accent);
  stroke-width: 1.6;
}

.service-item h3 {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.25;
}

.service-item p {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, .55fr));
  gap: 58px;
  padding-block: 74px 62px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 22px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 360px;
  color: #bcbcb7;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
}

.footer-column ul {
  display: grid;
  gap: 11px;
}

.footer-column a,
.footer-column span {
  color: #bcbcb7;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid #333331;
  color: #8e8e89;
  font-size: 10px;
}

.mobile-nav {
  display: grid;
  align-content: start;
  gap: 0;
}

.mobile-nav a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 500;
}

.mobile-nav svg {
  width: 18px;
  height: 18px;
}

.mobile-contact {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 12px;
}
