/* Depth tile shuffle */
.depth-stage {
  display: grid;
  min-height: 72vh;
  align-items: center;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
  perspective: 1100px;
}

.depth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  transform-style: preserve-3d;
}

.tile {
  display: grid;
  min-height: clamp(92px, 10vw, 150px);
  place-items: center;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background: var(--tone);
  box-shadow: 0 18px 40px rgba(17, 19, 21, 0.12);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
}

@media (max-width: 820px) {
  .depth-layout {
    grid-template-columns: 1fr;
  }

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