One style suggestion: nested `for` expressions can be combined into a single `for*`, helping reduce indentation depth:

    (for* ([i height]
           [j width])
      ...)